fix syntax error in error class.
This commit is contained in:
parent
063cde50c0
commit
95528adab5
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
'GET /' => function()
|
'GET /' => function()
|
||||||
{
|
{
|
||||||
|
$this->
|
||||||
return View::make('home/index');
|
return View::make('home/index');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ public static function handle($e)
|
||||||
->bind('message', $message)
|
->bind('message', $message)
|
||||||
->bind('file', $file)
|
->bind('file', $file)
|
||||||
->bind('line', $e->getLine())
|
->bind('line', $e->getLine())
|
||||||
->bind('trace', $e->getTraceAsString())
|
->bind('trace', $e->getTraceAsString());
|
||||||
|
|
||||||
Response::make($view, 500)->send();
|
Response::make($view, 500)->send();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue