PhpBench\Console\Command\RunCommand::__construct PHP Method

__construct() public method

public __construct ( RunnerHandler $runnerHandler, ReportHandler $reportHandler, TimeUnitHandler $timeUnitHandler, DumpHandler $dumpHandler, Registry $storage )
$runnerHandler PhpBench\Console\Command\Handler\RunnerHandler
$reportHandler PhpBench\Console\Command\Handler\ReportHandler
$timeUnitHandler PhpBench\Console\Command\Handler\TimeUnitHandler
$dumpHandler PhpBench\Console\Command\Handler\DumpHandler
$storage PhpBench\Registry\Registry
    public function __construct(RunnerHandler $runnerHandler, ReportHandler $reportHandler, TimeUnitHandler $timeUnitHandler, DumpHandler $dumpHandler, Registry $storage)
    {
        parent::__construct();
        $this->runnerHandler = $runnerHandler;
        $this->reportHandler = $reportHandler;
        $this->timeUnitHandler = $timeUnitHandler;
        $this->dumpHandler = $dumpHandler;
        $this->storage = $storage;
    }