fix syntax error in error class.

This commit is contained in:
Taylor Otwell
2011-07-10 23:16:11 -05:00
parent 063cde50c0
commit 95528adab5
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ return array(
'GET /' => function()
{
$this->
return View::make('home/index');
},

View File

@@ -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();
}