File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 6
6
"ergebnis/composer-normalize" : " *" ,
7
7
"maglnet/composer-require-checker" : " ^3.8" ,
8
8
"mi-schi/phpmd-extension" : " ^4.3" ,
9
- "php-cs-fixer/shim" : " ^3.14.4 " ,
9
+ "php-cs-fixer/shim" : " ^3.49.0 " ,
10
10
"phpmd/phpmd" : " ^2.13"
11
11
},
12
12
"config" : {
Original file line number Diff line number Diff line change 11
11
12
12
namespace PhpCsFixer \PhpunitConstraintIsIdenticalString \Constraint ;
13
13
14
- if (version_compare (\PHPUnit \Runner \Version::id (), '7.0.0 ' ) < 0 ) {
14
+ use PHPUnit \Runner \Version ;
15
+
16
+ if (version_compare (Version::id (), '7.0.0 ' ) < 0 ) {
15
17
class_alias (IsIdenticalStringForV5::class, IsIdenticalString::class);
16
- } elseif (version_compare (\ PHPUnit \ Runner \ Version::id (), '8.0.0 ' ) < 0 ) {
18
+ } elseif (version_compare (Version::id (), '8.0.0 ' ) < 0 ) {
17
19
class_alias (IsIdenticalStringForV7::class, IsIdenticalString::class);
18
- } elseif (version_compare (\ PHPUnit \ Runner \ Version::id (), '9.0.0 ' ) < 0 ) {
20
+ } elseif (version_compare (Version::id (), '9.0.0 ' ) < 0 ) {
19
21
class_alias (IsIdenticalStringForV8::class, IsIdenticalString::class);
20
22
} else {
21
23
class_alias (IsIdenticalStringForV9::class, IsIdenticalString::class);
You can’t perform that action at this time.
0 commit comments