Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Event/
Upload File :
Current File : //home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Event/StepEvent.php

<?php

declare(strict_types=1);

namespace Codeception\Event;

use Codeception\Step;
use Codeception\TestInterface;
use Symfony\Contracts\EventDispatcher\Event;

class StepEvent extends Event
{
    public function __construct(protected TestInterface $test, protected Step $step)
    {
    }

    public function getStep(): Step
    {
        return $this->step;
    }

    public function getTest(): TestInterface
    {
        return $this->test;
    }
}