File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public function __construct(Filter $filter)
30
30
throw new RuntimeException ('xdebug.coverage_enable=On has to be set in php.ini ' );
31
31
}
32
32
33
- \xdebug_set_filter (XDEBUG_FILTER_CODE_COVERAGE , XDEBUG_PATH_WHITELIST , $ filter ->getWhitelist ());
33
+ \xdebug_set_filter (\ XDEBUG_FILTER_CODE_COVERAGE , \ XDEBUG_PATH_WHITELIST , $ filter ->getWhitelist ());
34
34
}
35
35
36
36
/**
@@ -39,7 +39,7 @@ public function __construct(Filter $filter)
39
39
public function start (bool $ determineUnusedAndDead = true ): void
40
40
{
41
41
if ($ determineUnusedAndDead ) {
42
- \xdebug_start_code_coverage (XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE );
42
+ \xdebug_start_code_coverage (\ XDEBUG_CC_UNUSED | \ XDEBUG_CC_DEAD_CODE );
43
43
} else {
44
44
\xdebug_start_code_coverage ();
45
45
}
You can’t perform that action at this time.
0 commit comments