Total Complexity | 6 |
Total Lines | 54 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class Report implements EventSubscriberInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var mixed |
||
15 | */ |
||
16 | private $processor; |
||
17 | |||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | private $options; |
||
22 | |||
23 | 5 | public function __construct($processor, array $options) |
|
24 | { |
||
25 | 5 | $this->processor = $processor; |
|
26 | 5 | $this->options = $options; |
|
27 | } |
||
28 | |||
29 | 2 | public static function getSubscribedEvents() |
|
33 | ]; |
||
34 | } |
||
35 | |||
36 | 2 | public function process(CoverageEvent $event) |
|
65 | )); |
||
66 | } |
||
69 | } |