Skip to content

Commit 1bd3b17

Browse files
committedNov 18, 2022
Fix some native constant and function invocations
·
v7.3.3v6.2.0-RC1
1 parent 099fc6c commit 1bd3b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ClockMock.php‎

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.