Ejemplo n.º 1
0
 public function __construct(Runner $runner, ReportManager $reportManager, LoggerRegistry $loggerRegistry, TimeUnit $timeUnit, $progressLoggerName = null, $benchPath = null, $configPath = null)
 {
     parent::__construct();
     $this->reportManager = $reportManager;
     $this->loggerRegistry = $loggerRegistry;
     $this->timeUnit = $timeUnit;
     $this->progressLoggerName = $progressLoggerName;
     $this->benchPath = $benchPath;
     $this->configPath = $configPath;
     $this->runner = $runner;
 }
Ejemplo n.º 2
0
 public function __construct(ReportManager $reportManager)
 {
     parent::__construct();
     $this->reportManager = $reportManager;
 }