Skip to content

Commit 4166db9

Browse files
committed
Fix XDebug filters
1 parent 85548b8 commit 4166db9

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
@@ -66,7 +66,7 @@ public function start(bool $determineUnusedAndDead = true): void
6666
}
6767

6868
if ($this->determineBranchCoverage) {
69-
$flag |= XDEBUG_CC_BRANCH_CHECK;
69+
$flag = XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE | XDEBUG_CC_BRANCH_CHECK;
7070
}
7171

7272
\xdebug_start_code_coverage($flag);

0 commit comments

Comments
 (0)