From 78903e99a8559053e9bd5a1f70530be68bfcef06 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 3 Aug 2011 22:58:19 -0500 Subject: [PATCH] removed benchmarking stuff from front controller. --- public/index.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/public/index.php b/public/index.php index 229eb4de..a800cfe3 100644 --- a/public/index.php +++ b/public/index.php @@ -8,11 +8,6 @@ * @link http://laravel.com */ -// -------------------------------------------------------------- -// Get the framework start time. -// -------------------------------------------------------------- -$start = microtime(true); - // -------------------------------------------------------------- // The path to the application directory. // -------------------------------------------------------------- @@ -90,11 +85,6 @@ System\Loader::bootstrap(); spl_autoload_register(array('System\\Loader', 'load')); -// -------------------------------------------------------------- -// Register the framework starting time with the Benchmarker. -// -------------------------------------------------------------- -System\Benchmark::$marks['laravel'] = $start; - // -------------------------------------------------------------- // Set the error reporting and display levels. // --------------------------------------------------------------