File tree Expand file tree Collapse file tree 2 files changed +18
-18
lines changed Expand file tree Collapse file tree 2 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 1515 */
1616interface PHP_CodeCoverage_Driver
1717{
18- /**
19- * @var int
20- * @see http://xdebug.org/docs/code_coverage
21- */
22- const LINE_EXECUTED = 1 ;
23-
24- /**
25- * @var int
26- * @see http://xdebug.org/docs/code_coverage
27- */
28- const LINE_NOT_EXECUTED = -1 ;
29-
30- /**
31- * @var int
32- * @see http://xdebug.org/docs/code_coverage
33- */
34- const LINE_NOT_EXECUTABLE = -2 ;
35-
3618 /**
3719 * Start collection of code coverage information.
3820 */
Original file line number Diff line number Diff line change 1616 */
1717class PHP_CodeCoverage_Driver_PHPDBG implements PHP_CodeCoverage_Driver
1818{
19+ /**
20+ * @var int
21+ * @see http://xdebug.org/docs/code_coverage
22+ */
23+ const LINE_EXECUTED = 1 ;
24+
25+ /**
26+ * @var int
27+ * @see http://xdebug.org/docs/code_coverage
28+ */
29+ const LINE_NOT_EXECUTED = -1 ;
30+
31+ /**
32+ * @var int
33+ * @see http://xdebug.org/docs/code_coverage
34+ */
35+ const LINE_NOT_EXECUTABLE = -2 ;
36+
1937 /**
2038 * Constructor.
2139 */
You can’t perform that action at this time.
0 commit comments