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
2020 *
2121 * @see http://xdebug.org/docs/code_coverage
2222 */
23- public const LINE_EXECUTED = 1 ;
23+ public const LINE_NOT_EXECUTABLE = - 2 ;
2424
2525 /**
2626 * @var int
@@ -34,21 +34,21 @@ abstract class Driver
3434 *
3535 * @see http://xdebug.org/docs/code_coverage
3636 */
37- public const LINE_NOT_EXECUTABLE = - 2 ;
37+ public const LINE_EXECUTED = 1 ;
3838
3939 /**
4040 * @var int
4141 *
4242 * @see http://xdebug.org/docs/code_coverage
4343 */
44- public const BRANCH_HIT = 1 ;
44+ public const BRANCH_NOT_HIT = 0 ;
4545
4646 /**
4747 * @var int
4848 *
4949 * @see http://xdebug.org/docs/code_coverage
5050 */
51- public const BRANCH_NOT_HIT = 0 ;
51+ public const BRANCH_HIT = 1 ;
5252
5353 /**
5454 * @var bool
You can’t perform that action at this time.
0 commit comments