Inheritance: implements Symfony\Component\EventDispatcher\EventSubscriberInterface
Esempio n. 1
0
 /**
  * @param PresenterInterface  $presenter
  * @param IO                  $io
  * @param StatisticsCollector $stats
  */
 public function __construct(PresenterInterface $presenter, IO $io, StatisticsCollector $stats)
 {
     parent::__construct($presenter, $io, $stats);
     $this->io = $io;
 }
Esempio n. 2
0
 public function __construct(PresenterInterface $presenter, IO $io, StatisticsCollector $stats)
 {
     parent::__construct($presenter, $io, $stats);
     $this->initTestCaseNodes();
 }
Esempio n. 3
0
 public function __construct(Html\ReportItemFactory $reportItemFactory, PresenterInterface $presenter, IO $io, StatisticsCollector $stats)
 {
     $this->reportItemFactory = $reportItemFactory;
     parent::__construct($presenter, $io, $stats);
 }