diff --git a/public/index.php b/public/index.php index e2a3fcc0..3ef965ad 100644 --- a/public/index.php +++ b/public/index.php @@ -15,9 +15,14 @@ */ define('START_TIME', microtime(true)); +function elapsed() +{ + return number_format((microtime(true) - START_TIME) * 1000, 2); +} + /* |-------------------------------------------------------------------------- -| Where Am I? +| Laravel Installation Paths |-------------------------------------------------------------------------- | | Here you may specify the location of the various Laravel framework @@ -43,6 +48,4 @@ | 3... 2... 1... Lift-off! |-------------------------------------------------------------------------- */ -require $laravel.'/laravel.php'; - -echo (microtime(true) - START_TIME) * 1000; \ No newline at end of file +require $laravel.'/laravel.php'; \ No newline at end of file