Skip to content

Commit 1af0d7e

Browse files
committed
Fix CS
1 parent 3255a36 commit 1af0d7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Extension/Core/DataTransformer/NumberToLocalizedStringTransformer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public function reverseTransform($value)
171171
if (false !== strpos($value, $decSep)) {
172172
$type = \NumberFormatter::TYPE_DOUBLE;
173173
} else {
174-
$type = PHP_INT_SIZE === 8
174+
$type = \PHP_INT_SIZE === 8
175175
? \NumberFormatter::TYPE_INT64
176176
: \NumberFormatter::TYPE_INT32;
177177
}

Tests/Extension/Core/Type/DateTypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ public function testDayErrorsBubbleUp($widget)
891891

892892
public function testYearsFor32BitsMachines()
893893
{
894-
if (4 !== PHP_INT_SIZE) {
894+
if (4 !== \PHP_INT_SIZE) {
895895
$this->markTestSkipped('PHP 32 bit is required.');
896896
}
897897

0 commit comments

Comments
 (0)