Skip to content

Commit 1f5c39b

Browse files
Add missing annotations
1 parent 4b3424f commit 1f5c39b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Driver/Driver.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ public function collectsBranchAndPathCoverage(): bool
5656
return $this->collectBranchAndPathCoverage;
5757
}
5858

59+
/**
60+
* @throws BranchAndPathCoverageNotSupportedException
61+
*/
5962
public function enableBranchAndPathCoverage(): void
6063
{
6164
if (!$this->canCollectBranchAndPathCoverage()) {
@@ -80,6 +83,9 @@ public function detectsDeadCode(): bool
8083
return $this->detectDeadCode;
8184
}
8285

86+
/**
87+
* @throws DeadCodeDetectionNotSupportedException
88+
*/
8389
public function enableDeadCodeDetection(): void
8490
{
8591
if (!$this->canDetectDeadCode()) {

0 commit comments

Comments
 (0)