| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class CoverageEvent extends Event |
||
| 13 | { |
||
| 14 | const REPORT = 'doyo.coverage.report'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var ProcessorInterface |
||
| 18 | */ |
||
| 19 | private $processor; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var ConsoleIO |
||
| 23 | */ |
||
| 24 | private $consoleIO; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * CoverageEvent constructor. |
||
| 28 | * @param ProcessorInterface $processor |
||
| 29 | * @param ConsoleIO $consoleIO |
||
| 30 | */ |
||
| 31 | 3 | public function __construct( |
|
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return ProcessorInterface |
||
| 42 | */ |
||
| 43 | 1 | public function getProcessor(): ProcessorInterface |
|
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return ConsoleIO |
||
| 50 | */ |
||
| 51 | 1 | public function getConsoleIO(): ConsoleIO |
|
| 54 | } |
||
| 55 | } |