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