tweaking the error bootstrap file.

This commit is contained in:
Taylor Otwell 2011-10-15 22:57:49 -05:00
parent 736351911f
commit 048c917ea5
1 changed files with 5 additions and 4 deletions

View File

@ -33,9 +33,8 @@
};
/**
* Create the exception handler function. All of the handlers
* registered with PHP will call this handler when an error
* occurs so the code stays D.R.Y.
* Create the exception handler function. All of the error handlers
* registered with PHP call this closure to keep the code D.R.Y.
*/
$handler = function($e) use ($formatter)
{
@ -72,7 +71,9 @@
{
if ( ! is_null($error = error_get_last()))
{
$handler(new \ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
extract($error, EXTR_SKIP);
$handler(new \ErrorException($message, $type, 0, $file, $line));
}
});