diff --git a/src/Driver/PcovDriver.php b/src/Driver/PcovDriver.php index cdb01e65..9add4a62 100644 --- a/src/Driver/PcovDriver.php +++ b/src/Driver/PcovDriver.php @@ -38,6 +38,9 @@ public function __construct(Filter $filter) $this->filter = $filter; } + /** + * @codeCoverageIgnore + */ public function start(): void { start(); @@ -47,6 +50,7 @@ public function stop(): RawCodeCoverageData { stop(); + // @codeCoverageIgnoreStart $filesToCollectCoverageFor = waiting(); $collected = []; @@ -61,6 +65,7 @@ public function stop(): RawCodeCoverageData } return RawCodeCoverageData::fromXdebugWithoutPathCoverage($collected); + // @codeCoverageIgnoreEnd } public function nameAndVersion(): string