Skip to content

Commit 4cd54ee

Browse files
committed
Fix XDebug filters
1 parent 592e852 commit 4cd54ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Driver/Xdebug.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function start(bool $determineUnusedAndDead = true): void
5454
}
5555

5656
if ($this->determineBranchCoverage) {
57-
$flag |= XDEBUG_CC_BRANCH_CHECK;
57+
$flag = XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE | XDEBUG_CC_BRANCH_CHECK;
5858
}
5959

6060
\xdebug_start_code_coverage($flag);

0 commit comments

Comments
 (0)