remove elapsed time from front controller.

This commit is contained in:
Taylor Otwell 2011-11-12 00:08:09 -06:00
parent a5aaf33fe5
commit 04f7661292
1 changed files with 4 additions and 3 deletions

View File

@ -8,6 +8,9 @@
* @link http://laravel.com * @link http://laravel.com
*/ */
// --------------------------------------------------------------
// Tick... Tock... Tick... Tock...
// --------------------------------------------------------------
define('LARAVEL_START', microtime(true)); define('LARAVEL_START', microtime(true));
// -------------------------------------------------------------- // --------------------------------------------------------------
@ -29,5 +32,3 @@
// Launch Laravel. // Launch Laravel.
// -------------------------------------------------------------- // --------------------------------------------------------------
require $laravel.'/laravel.php'; require $laravel.'/laravel.php';
echo number_format((microtime(true) - LARAVEL_START) * 1000, 2);