SensioLabs\Deptrac\Command\AnalyzeCommand::__construct PHP Method

__construct() public method

public __construct ( Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher, SensioLabs\AstRunner\AstRunner $astRunner, OutputFormatterFactory $formatterFactory, RulesetEngine $rulesetEngine, CollectorFactory $collectorFactory )
$dispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface
$astRunner SensioLabs\AstRunner\AstRunner
$formatterFactory SensioLabs\Deptrac\OutputFormatterFactory
$rulesetEngine SensioLabs\Deptrac\RulesetEngine
$collectorFactory SensioLabs\Deptrac\CollectorFactory
    public function __construct(EventDispatcherInterface $dispatcher, AstRunner $astRunner, OutputFormatterFactory $formatterFactory, RulesetEngine $rulesetEngine, CollectorFactory $collectorFactory)
    {
        $this->dispatcher = $dispatcher;
        $this->astRunner = $astRunner;
        $this->formatterFactory = $formatterFactory;
        $this->rulesetEngine = $rulesetEngine;
        $this->collectorFactory = $collectorFactory;
        parent::__construct();
    }