1 | <?php |
||
15 | class CompositeReporter extends AbstractBaseReporter |
||
16 | { |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | private $reporters; |
||
21 | |||
22 | /** |
||
23 | * @param array $reporters |
||
24 | * @param Configuration $configuration |
||
25 | * @param OutputInterface $output |
||
26 | * @param EventEmitterInterface $eventEmitter |
||
27 | */ |
||
28 | public function __construct( |
||
38 | |||
39 | /** |
||
40 | * Return the wrapped reporters. |
||
41 | * |
||
42 | * @return array |
||
43 | */ |
||
44 | public function getReporters() |
||
48 | |||
49 | /** |
||
50 | * Initialize reporter. Setup and listen for runner events. |
||
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | public function init() |
||
58 | |||
59 | /** |
||
60 | * @param \Evenement\EventEmitterInterface $eventEmitter |
||
61 | */ |
||
62 | public function setEventEmitter(EventEmitterInterface $eventEmitter) |
||
72 | |||
73 | public function onRunnerEnd() |
||
86 | } |
||
87 |