fix syntax error in error class.
This commit is contained in:
@@ -17,6 +17,7 @@ return array(
|
||||
|
||||
'GET /' => function()
|
||||
{
|
||||
$this->
|
||||
return View::make('home/index');
|
||||
},
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ class Error {
|
||||
->bind('message', $message)
|
||||
->bind('file', $file)
|
||||
->bind('line', $e->getLine())
|
||||
->bind('trace', $e->getTraceAsString())
|
||||
->bind('trace', $e->getTraceAsString());
|
||||
|
||||
Response::make($view, 500)->send();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user