Add the laravel start time to the benchmarker.
This commit is contained in:
parent
ecb4381d78
commit
a474850071
|
@ -8,7 +8,10 @@
|
||||||
* @link http://laravel.com
|
* @link http://laravel.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$t = microtime(true);
|
// --------------------------------------------------------------
|
||||||
|
// Get the framework start time.
|
||||||
|
// --------------------------------------------------------------
|
||||||
|
$start = microtime(true);
|
||||||
|
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
// The path to the application directory.
|
// The path to the application directory.
|
||||||
|
@ -90,6 +93,11 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// --------------------------------------------------------------
|
||||||
|
// Register the framework starting time with the Benchmarker.
|
||||||
|
// --------------------------------------------------------------
|
||||||
|
System\Benchmark::$marks['laravel'] = $start;
|
||||||
|
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
// Set the error reporting and display levels.
|
// Set the error reporting and display levels.
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue