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 7f8d816 commit 615cfa6Copy full SHA for 615cfa6
src/Driver/Driver.php
@@ -56,6 +56,9 @@ public function collectsBranchAndPathCoverage(): bool
56
return $this->collectBranchAndPathCoverage;
57
}
58
59
+ /**
60
+ * @throws BranchAndPathCoverageNotSupportedException
61
+ */
62
public function enableBranchAndPathCoverage(): void
63
{
64
if (!$this->canCollectBranchAndPathCoverage()) {
@@ -80,6 +83,9 @@ public function detectsDeadCode(): bool
80
83
return $this->detectDeadCode;
81
84
82
85
86
87
+ * @throws DeadCodeDetectionNotSupportedException
88
89
public function enableDeadCodeDetection(): void
90
91
if (!$this->canDetectDeadCode()) {
0 commit comments