Skip to content

Commit b32e82c

Browse files
fabpotnicolas-grekas
authored andcommitted
Fix CS
1 parent 7060288 commit b32e82c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NumberFormatter/NumberFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ private function getInt64Value($value)
816816
return false;
817817
}
818818

819-
if (PHP_INT_SIZE !== 8 && ($value > self::$int32Max || $value <= -self::$int32Max - 1)) {
819+
if (\PHP_INT_SIZE !== 8 && ($value > self::$int32Max || $value < -self::$int32Max - 1)) {
820820
return (float) $value;
821821
}
822822

Tests/DateFormatter/IntlDateFormatterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public function parseQuarterProvider()
167167

168168
public function testParseThreeDigitsYears()
169169
{
170-
if (PHP_INT_SIZE < 8) {
170+
if (\PHP_INT_SIZE < 8) {
171171
$this->markTestSkipped('Parsing three digits years requires a 64bit PHP.');
172172
}
173173

0 commit comments

Comments
 (0)