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 836bd22 commit cda67fbCopy full SHA for cda67fb
run-tests.php
@@ -784,23 +784,6 @@ function main(): void
784
}
785
786
787
-if (!function_exists("hrtime")) {
788
- /**
789
- * @return array|float|int
790
- */
791
- function hrtime(bool $as_num = false)
792
- {
793
- $t = microtime(true);
794
-
795
- if ($as_num) {
796
- return $t * 1000000000;
797
- }
798
799
- $s = floor($t);
800
- return [0 => $s, 1 => ($t - $s) * 1000000000];
801
802
-}
803
804
function verify_config(string $php): void
805
{
806
if (empty($php) || !file_exists($php)) {
0 commit comments