1 | <?php |
||
15 | class CompositeReporter extends AbstractBaseReporter |
||
16 | { |
||
17 | /** |
||
18 | * @param array $reporters |
||
19 | * @param Configuration $configuration |
||
20 | * @param OutputInterface $output |
||
21 | * @param EventEmitterInterface $eventEmitter |
||
22 | */ |
||
23 | public function __construct( |
||
33 | |||
34 | /** |
||
35 | * Initialize reporter. Setup and listen for runner events |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | public function init() |
||
43 | |||
44 | /** |
||
45 | * @param \Evenement\EventEmitterInterface $eventEmitter |
||
46 | */ |
||
47 | public function setEventEmitter(EventEmitterInterface $eventEmitter) |
||
57 | |||
58 | public function onRunnerEnd() |
||
71 | |||
72 | private $reporters; |
||
73 | } |
||
74 |