File tree 2 files changed +3
-32
lines changed
2 files changed +3
-32
lines changed Original file line number Diff line number Diff line change 19
19
abstract class Driver
20
20
{
21
21
/**
22
- * @var int
23
- *
24
22
* @see http://xdebug.org/docs/code_coverage
25
23
*/
26
24
public const int LINE_NOT_EXECUTABLE = -2 ;
27
25
28
26
/**
29
- * @var int
30
- *
31
27
* @see http://xdebug.org/docs/code_coverage
32
28
*/
33
29
public const int LINE_NOT_EXECUTED = -1 ;
34
30
35
31
/**
36
- * @var int
37
- *
38
32
* @see http://xdebug.org/docs/code_coverage
39
33
*/
40
34
public const int LINE_EXECUTED = 1 ;
41
35
42
36
/**
43
- * @var int
44
- *
45
37
* @see http://xdebug.org/docs/code_coverage
46
38
*/
47
39
public const int BRANCH_NOT_HIT = 0 ;
48
40
49
41
/**
50
- * @var int
51
- *
52
42
* @see http://xdebug.org/docs/code_coverage
53
43
*/
54
44
public const int BRANCH_HIT = 1 ;
Original file line number Diff line number Diff line change 23
23
24
24
final class Text
25
25
{
26
- /**
27
- * @var string
28
- */
29
- private const string COLOR_GREEN = "\x1b[30;42m " ;
30
-
31
- /**
32
- * @var string
33
- */
26
+ private const string COLOR_GREEN = "\x1b[30;42m " ;
34
27
private const string COLOR_YELLOW = "\x1b[30;43m " ;
35
-
36
- /**
37
- * @var string
38
- */
39
- private const string COLOR_RED = "\x1b[37;41m " ;
40
-
41
- /**
42
- * @var string
43
- */
28
+ private const string COLOR_RED = "\x1b[37;41m " ;
44
29
private const string COLOR_HEADER = "\x1b[1;37;40m " ;
45
-
46
- /**
47
- * @var string
48
- */
49
- private const string COLOR_RESET = "\x1b[0m " ;
30
+ private const string COLOR_RESET = "\x1b[0m " ;
50
31
private readonly Thresholds $ thresholds ;
51
32
private readonly bool $ showUncoveredFiles ;
52
33
private readonly bool $ showOnlySummary ;
You can’t perform that action at this time.
0 commit comments