We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f0bfe commit f29476eCopy full SHA for f29476e
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php
@@ -851,7 +851,7 @@ private function getInt64Value($value)
851
return false;
852
}
853
854
- if (PHP_INT_SIZE !== 8 && ($value > self::$int32Max || $value <= -self::$int32Max - 1)) {
+ if (PHP_INT_SIZE !== 8 && ($value > self::$int32Max || $value < -self::$int32Max - 1)) {
855
return (float) $value;
856
857
0 commit comments