File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ abstract class Driver
20
20
*
21
21
* @see http://xdebug.org/docs/code_coverage
22
22
*/
23
- public const LINE_EXECUTED = 1 ;
23
+ public const LINE_NOT_EXECUTABLE = - 2 ;
24
24
25
25
/**
26
26
* @var int
@@ -34,21 +34,21 @@ abstract class Driver
34
34
*
35
35
* @see http://xdebug.org/docs/code_coverage
36
36
*/
37
- public const LINE_NOT_EXECUTABLE = - 2 ;
37
+ public const LINE_EXECUTED = 1 ;
38
38
39
39
/**
40
40
* @var int
41
41
*
42
42
* @see http://xdebug.org/docs/code_coverage
43
43
*/
44
- public const BRANCH_HIT = 1 ;
44
+ public const BRANCH_NOT_HIT = 0 ;
45
45
46
46
/**
47
47
* @var int
48
48
*
49
49
* @see http://xdebug.org/docs/code_coverage
50
50
*/
51
- public const BRANCH_NOT_HIT = 0 ;
51
+ public const BRANCH_HIT = 1 ;
52
52
53
53
/**
54
54
* @var bool
You can’t perform that action at this time.
0 commit comments