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/PrintResultEvent.php

<?php

declare(strict_types=1);

namespace Codeception\Event;

use Codeception\ResultAggregator;
use Symfony\Contracts\EventDispatcher\Event;

class PrintResultEvent extends Event
{
    public function __construct(protected ResultAggregator $result)
    {
    }

    public function getResult(): ResultAggregator
    {
        return $this->result;
    }
}