File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2020 },
2121 "require-dev" : {
2222 "php-collective/code-sniffer" : " ^0.2.1" ,
23- "phpstan/phpstan" : " ^1 .0.0" ,
24- "phpunit/phpunit" : " ^10.3 .0"
23+ "phpstan/phpstan" : " ^2 .0.0" ,
24+ "phpunit/phpunit" : " ^11.0 .0"
2525 },
2626 "minimum-stability" : " stable" ,
2727 "prefer-stable" : true ,
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ parameters:
22 level : 8
33 paths :
44 - src/
5- checkMissingIterableValueType : false
65 ignoreErrors :
6+ - identifier : missingType.iterableValue
77 - '#Unsafe usage of new static\ (\ ). #'
8+ - ' #expects numeric-string , string given. #'
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ public function lessThan(self|string|float|int $value): bool
200200 */
201201 public function greaterThanOrEquals (self |string |float |int $ value ): bool
202202 {
203- return ( $ this ->compareTo ($ value ) >= 0 ) ;
203+ return $ this ->compareTo ($ value ) >= 0 ;
204204 }
205205
206206 /**
@@ -222,7 +222,7 @@ public function greatherThanOrEquals(self|string|float|int $value): bool
222222 */
223223 public function lessThanOrEquals (self |string |float |int $ value ): bool
224224 {
225- return ( $ this ->compareTo ($ value ) <= 0 ) ;
225+ return $ this ->compareTo ($ value ) <= 0 ;
226226 }
227227
228228 /**
You can’t perform that action at this time.
0 commit comments