We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4163491 commit f4384f1Copy full SHA for f4384f1
src/Driver/PcovDriver.php
@@ -38,6 +38,9 @@ public function __construct(Filter $filter)
38
$this->filter = $filter;
39
}
40
41
+ /**
42
+ * @codeCoverageIgnore
43
+ */
44
public function start(): void
45
{
46
start();
@@ -47,6 +50,7 @@ public function stop(): RawCodeCoverageData
47
50
48
51
stop();
49
52
53
+ // @codeCoverageIgnoreStart
54
$filesToCollectCoverageFor = waiting();
55
$collected = [];
56
@@ -61,6 +65,7 @@ public function stop(): RawCodeCoverageData
61
65
62
66
63
67
return RawCodeCoverageData::fromXdebugWithoutPathCoverage($collected);
68
+ // @codeCoverageIgnoreEnd
64
69
70
71
public function nameAndVersion(): string
0 commit comments