PhpSpec\Runner\Maintainer\SubjectMaintainer::__construct PHP Method

__construct() public method

public __construct ( PhpSpec\Formatter\Presenter\Presenter $presenter, Unwrapper $unwrapper, Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher, PhpSpec\CodeAnalysis\AccessInspector $accessInspector )
$presenter PhpSpec\Formatter\Presenter\Presenter
$unwrapper PhpSpec\Wrapper\Unwrapper
$dispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface
$accessInspector PhpSpec\CodeAnalysis\AccessInspector
    public function __construct(Presenter $presenter, Unwrapper $unwrapper, EventDispatcherInterface $dispatcher, AccessInspector $accessInspector)
    {
        $this->presenter = $presenter;
        $this->unwrapper = $unwrapper;
        $this->dispatcher = $dispatcher;
        $this->accessInspector = $accessInspector;
    }