| Total Complexity | 6 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| 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 | public function __construct($processor, array $options) |
||
| 24 | { |
||
| 25 | $this->processor = $processor; |
||
| 26 | $this->options = $options; |
||
| 27 | } |
||
| 28 | |||
| 29 | public static function getSubscribedEvents() |
||
| 33 | ]; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function process(CoverageEvent $event) |
||
| 65 | )); |
||
| 66 | } |
||
| 69 | } |