1 | <?php |
||
16 | class ResultReporterManager |
||
17 | { |
||
18 | private $resultReporters = []; |
||
19 | |||
20 | private $logger; |
||
21 | |||
22 | 134 | public function __construct($logger) |
|
26 | |||
27 | 134 | public function add(ResultReporterInterface $reporter) |
|
31 | |||
32 | 129 | public function notifyAll(TestResult $result) |
|
42 | |||
43 | 127 | public function postPersist(LifecycleEventArgs $args) |
|
51 | } |
||
52 |