Skip to content

Commit 1bd3b17

Browse files
committed
Fix some native constant and function invocations
1 parent 099fc6c commit 1bd3b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ClockMock.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public static function hrtime($asNumber = false)
9797
if ($asNumber) {
9898
$number = sprintf('%d%d', (int) self::$now, $ns);
9999

100-
return PHP_INT_SIZE === 8 ? (int) $number : (float) $number;
100+
return \PHP_INT_SIZE === 8 ? (int) $number : (float) $number;
101101
}
102102

103103
return [(int) self::$now, (int) $ns];

0 commit comments

Comments
 (0)