From de6208f671cc2f43e3f1289fbb7de5ecbed3b1f7 Mon Sep 17 00:00:00 2001 From: Charlotte Dunois Date: Mon, 13 Jan 2020 22:19:53 +0100 Subject: [PATCH] Move up --- bootstrap.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index ea7c008..52dd67b 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -6,12 +6,12 @@ * License: https://github.com/ObsidianPHP/polyfill-hrtime/blob/master/LICENSE */ +require_once 'src/functions.php'; + if(function_exists('hrtime')) { return; } -require_once 'src/functions.php'; - use function Obsidian\Polyfill\Hrtime\hrtime_ext_uv; use function Obsidian\Polyfill\Hrtime\hrtime_ext_hrtime; use function Obsidian\Polyfill\Hrtime\hrtime_fallback; @@ -32,4 +32,4 @@ function hrtime(bool $get_as_number = false) { } hrtime(); -} \ No newline at end of file +}