Browse Source

Preload error handler class

Nathan 14 years ago
parent
commit
c07c0ee3de
1 changed files with 5 additions and 0 deletions
  1. 5 0
      public/index.php

+ 5 - 0
public/index.php

@@ -47,6 +47,11 @@ System\Benchmark::$marks['laravel'] = LARAVEL_START;
 // --------------------------------------------------------------
 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.
 // --------------------------------------------------------------