Commit c07c0ee3 by Nathan

Preload error handler class

parent f7bb0c55
...@@ -48,6 +48,11 @@ System\Benchmark::$marks['laravel'] = LARAVEL_START; ...@@ -48,6 +48,11 @@ System\Benchmark::$marks['laravel'] = LARAVEL_START;
error_reporting((System\Config::get('error.detail')) ? E_ALL | E_STRICT : 0); error_reporting((System\Config::get('error.detail')) ? E_ALL | E_STRICT : 0);
// -------------------------------------------------------------- // --------------------------------------------------------------
// Ensure Error class loads before any errors fire.
// --------------------------------------------------------------
class_exists('System\Error');
// --------------------------------------------------------------
// Register the error handlers. // Register the error handlers.
// -------------------------------------------------------------- // --------------------------------------------------------------
set_exception_handler(function($e) set_exception_handler(function($e)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment