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 3d0b2a3 commit 5c778a7Copy full SHA for 5c778a7
src/CodeCoverage/Driver/Xdebug.php
@@ -44,7 +44,8 @@ public function __construct()
44
*/
45
public function start()
46
{
47
- xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
+ // TODO: Will hook up XDEBUG_CC_BRANCH_CHECK to a configuration option and also do an existence check...
48
+ xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE | XDEBUG_CC_BRANCH_CHECK );
49
}
50
51
/**
0 commit comments