@@ -325,18 +325,18 @@ public function isSmallerThan(Type $otherType): TrinaryLogic
325
325
return TrinaryLogic::extremeIdentity ($ minIsSmaller , $ maxIsSmaller );
326
326
}
327
327
328
- public function isSmallerThanOrEqual (Type $ otherType ): TrinaryLogic
328
+ public function isSmallerThanOrEqual (Type $ otherType, PhpVersion $ phpVersion ): TrinaryLogic
329
329
{
330
330
if ($ this ->min === null ) {
331
331
$ minIsSmaller = TrinaryLogic::createYes ();
332
332
} else {
333
- $ minIsSmaller = (new ConstantIntegerType ($ this ->min ))->isSmallerThanOrEqual ($ otherType );
333
+ $ minIsSmaller = (new ConstantIntegerType ($ this ->min ))->isSmallerThanOrEqual ($ otherType, $ phpVersion );
334
334
}
335
335
336
336
if ($ this ->max === null ) {
337
337
$ maxIsSmaller = TrinaryLogic::createNo ();
338
338
} else {
339
- $ maxIsSmaller = (new ConstantIntegerType ($ this ->max ))->isSmallerThanOrEqual ($ otherType );
339
+ $ maxIsSmaller = (new ConstantIntegerType ($ this ->max ))->isSmallerThanOrEqual ($ otherType, $ phpVersion );
340
340
}
341
341
342
342
return TrinaryLogic::extremeIdentity ($ minIsSmaller , $ maxIsSmaller );
@@ -359,18 +359,18 @@ public function isGreaterThan(Type $otherType): TrinaryLogic
359
359
return TrinaryLogic::extremeIdentity ($ minIsSmaller , $ maxIsSmaller );
360
360
}
361
361
362
- public function isGreaterThanOrEqual (Type $ otherType ): TrinaryLogic
362
+ public function isGreaterThanOrEqual (Type $ otherType, PhpVersion $ phpVersion ): TrinaryLogic
363
363
{
364
364
if ($ this ->min === null ) {
365
365
$ minIsSmaller = TrinaryLogic::createNo ();
366
366
} else {
367
- $ minIsSmaller = $ otherType ->isSmallerThanOrEqual ((new ConstantIntegerType ($ this ->min )));
367
+ $ minIsSmaller = $ otherType ->isSmallerThanOrEqual ((new ConstantIntegerType ($ this ->min )), $ phpVersion );
368
368
}
369
369
370
370
if ($ this ->max === null ) {
371
371
$ maxIsSmaller = TrinaryLogic::createYes ();
372
372
} else {
373
- $ maxIsSmaller = $ otherType ->isSmallerThanOrEqual ((new ConstantIntegerType ($ this ->max )));
373
+ $ maxIsSmaller = $ otherType ->isSmallerThanOrEqual ((new ConstantIntegerType ($ this ->max )), $ phpVersion );
374
374
}
375
375
376
376
return TrinaryLogic::extremeIdentity ($ minIsSmaller , $ maxIsSmaller );
0 commit comments