File tree 6 files changed +9
-2
lines changed
6 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \Report ;
11
11
12
+ use const DIRECTORY_SEPARATOR ;
12
13
use function basename ;
13
14
use function count ;
14
15
use function dirname ;
Original file line number Diff line number Diff line change 38
38
use const T_ENDIF ;
39
39
use const T_ENDSWITCH ;
40
40
use const T_ENDWHILE ;
41
+ use const T_ENUM ;
41
42
use const T_EVAL ;
42
43
use const T_EXIT ;
43
44
use const T_EXTENDS ;
44
45
use const T_FINAL ;
45
46
use const T_FINALLY ;
47
+ use const T_FN ;
46
48
use const T_FOR ;
47
49
use const T_FOREACH ;
48
50
use const T_FUNCTION ;
59
61
use const T_INTERFACE ;
60
62
use const T_ISSET ;
61
63
use const T_LIST ;
64
+ use const T_MATCH ;
62
65
use const T_NAMESPACE ;
63
66
use const T_NEW ;
64
67
use const T_PRINT ;
65
68
use const T_PRIVATE ;
66
69
use const T_PROTECTED ;
67
70
use const T_PUBLIC ;
71
+ use const T_READONLY ;
68
72
use const T_REQUIRE ;
69
73
use const T_REQUIRE_ONCE ;
70
74
use const T_RETURN ;
Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \Report ;
11
11
12
+ use const PHP_EOL ;
12
13
use function dirname ;
13
14
use function file_put_contents ;
14
15
use function serialize ;
Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \StaticAnalysis ;
11
11
12
+ use const DIRECTORY_SEPARATOR ;
12
13
use function file_get_contents ;
13
14
use function file_put_contents ;
14
15
use function implode ;
Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \StaticAnalysis ;
11
11
12
+ use const T_COMMENT ;
13
+ use const T_DOC_COMMENT ;
12
14
use function array_merge ;
13
15
use function array_unique ;
14
16
use function assert ;
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ public function testLineDataFromPathCoverageXDebugFormat(): void
44
44
13 => -1 ,
45
45
],
46
46
'functions ' => [
47
-
48
47
],
49
48
],
50
49
'/some/path/justAScript.php ' => [
@@ -54,7 +53,6 @@ public function testLineDataFromPathCoverageXDebugFormat(): void
54
53
113 => -1 ,
55
54
],
56
55
'functions ' => [
57
-
58
56
],
59
57
],
60
58
];
You can’t perform that action at this time.
0 commit comments