| 1 | <?php |
||
| 16 | class CoveragePrinter implements EventSubscriberInterface |
||
| 17 | { |
||
| 18 | /** @var PHPDbgBinFile */ |
||
| 19 | private $phpdgbBin; |
||
| 20 | |||
| 21 | /** @var XDebugProxy */ |
||
| 22 | private $xdebug; |
||
| 23 | |||
| 24 | /** @var OutputInterface */ |
||
| 25 | private $output; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * CoveragePrinter constructor. |
||
| 29 | * @param PHPDbgBinFile $phpdgbBin |
||
| 30 | * @param XDebugProxy $xdebug |
||
| 31 | */ |
||
| 32 | 4 | public function __construct(PHPDbgBinFile $phpdgbBin, XDebugProxy $xdebug, OutputInterface $output) |
|
| 38 | |||
| 39 | 9 | public static function getSubscribedEvents(): array |
|
| 45 | |||
| 46 | 4 | public function onEngineBeforeStart() |
|
| 64 | } |
||
| 65 |