Commit 95528ada by Taylor Otwell

fix syntax error in error class.

parent 063cde50
...@@ -17,6 +17,7 @@ return array( ...@@ -17,6 +17,7 @@ return array(
'GET /' => function() 'GET /' => function()
{ {
$this->
return View::make('home/index'); return View::make('home/index');
}, },
......
...@@ -66,7 +66,7 @@ class Error { ...@@ -66,7 +66,7 @@ class Error {
->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();
} }
......
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