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 | * Return the wrapped reporters. |
||
36 | * |
||
37 | * @return array |
||
38 | */ |
||
39 | public function getReporters() |
||
43 | |||
44 | /** |
||
45 | * Initialize reporter. Setup and listen for runner events. |
||
46 | * |
||
47 | * @return void |
||
48 | */ |
||
49 | public function init() |
||
53 | |||
54 | /** |
||
55 | * @param \Evenement\EventEmitterInterface $eventEmitter |
||
56 | */ |
||
57 | public function setEventEmitter(EventEmitterInterface $eventEmitter) |
||
67 | |||
68 | public function onRunnerEnd() |
||
81 | |||
82 | private $reporters; |
||
83 | } |
||
84 |