File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 18
18
"amphp/http-server" : " ^2.1" ,
19
19
"dms/phpunit-arraysubset-asserts" : " dev-master" ,
20
20
"ergebnis/composer-normalize" : " ^2.28" ,
21
- "friendsofphp/php-cs-fixer" : " 3.30.0 " ,
21
+ "friendsofphp/php-cs-fixer" : " 3.47.1 " ,
22
22
"mll-lab/php-cs-fixer-config" : " ^5" ,
23
23
"nyholm/psr7" : " ^1.5" ,
24
24
"phpbench/phpbench" : " ^1.2" ,
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public static function suppress($suppress = true): void
62
62
self ::$ enableWarnings = 0 ;
63
63
} elseif ($ suppress === false ) {
64
64
self ::$ enableWarnings = self ::ALL ;
65
- // @phpstan-ignore-next-line necessary until we can use proper unions
65
+ // @phpstan-ignore-next-line necessary until we can use proper unions
66
66
} elseif (\is_int ($ suppress )) {
67
67
self ::$ enableWarnings &= ~$ suppress ;
68
68
} else {
@@ -88,7 +88,7 @@ public static function enable($enable = true): void
88
88
self ::$ enableWarnings = self ::ALL ;
89
89
} elseif ($ enable === false ) {
90
90
self ::$ enableWarnings = 0 ;
91
- // @phpstan-ignore-next-line necessary until we can use proper unions
91
+ // @phpstan-ignore-next-line necessary until we can use proper unions
92
92
} elseif (\is_int ($ enable )) {
93
93
self ::$ enableWarnings |= $ enable ;
94
94
} else {
You can’t perform that action at this time.
0 commit comments