Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | class RemoteCoverage implements EventSubscriberInterface |
||
21 | { |
||
22 | private $repository; |
||
23 | |||
24 | 1 | public function __construct( |
|
25 | CoverageRepository $repository |
||
26 | ) { |
||
27 | 1 | $this->repository = $repository; |
|
28 | } |
||
29 | |||
30 | 1 | public static function getSubscribedEvents() |
|
36 | ]; |
||
37 | } |
||
38 | |||
39 | public function onCoverageStarted() |
||
41 | } |
||
42 | |||
43 | public function onCoverageStopped() |
||
45 | } |
||
46 | |||
47 | public function onCoverageRefresh() |
||
51 |