File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 59
59
* @version Release: @package_version@
60
60
* @link http://github.com/sebastianbergmann/php-code-coverage
61
61
* @since Class available since Release 1.0.0
62
+ * @codeCoverageIgnore
62
63
*/
63
64
class PHP_CodeCoverage_Driver_Xdebug implements PHP_CodeCoverage_Driver
64
65
{
@@ -67,9 +68,7 @@ class PHP_CodeCoverage_Driver_Xdebug implements PHP_CodeCoverage_Driver
67
68
*/
68
69
public function start ()
69
70
{
70
- // @codeCoverageIgnoreStart
71
71
xdebug_start_code_coverage (XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE );
72
- // @codeCoverageIgnoreEnd
73
72
}
74
73
75
74
/**
@@ -79,11 +78,9 @@ public function start()
79
78
*/
80
79
public function stop ()
81
80
{
82
- // @codeCoverageIgnoreStart
83
81
$ codeCoverage = xdebug_get_code_coverage ();
84
82
xdebug_stop_code_coverage ();
85
83
86
84
return $ codeCoverage ;
87
- // @codeCoverageIgnoreEnd
88
85
}
89
86
}
Original file line number Diff line number Diff line change 43
43
* @since File available since Release 1.0.0
44
44
*/
45
45
46
+ // @codeCoverageIgnoreStart
46
47
if (!defined ('T_NAMESPACE ' )) {
47
48
define ('T_NAMESPACE ' , 377 );
48
49
}
@@ -53,6 +54,7 @@ function trait_exists($name)
53
54
return FALSE ;
54
55
}
55
56
}
57
+ // @codeCoverageIgnoreEnd
56
58
57
59
/**
58
60
* Utility methods.
You can’t perform that action at this time.
0 commit comments