Fix typo in exception handler

This commit is contained in:
Dane Everitt 2016-09-07 18:25:11 -04:00
parent 05f0f48caf
commit 33ca221b99
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class Handler extends ExceptionHandler
Log::error($exception);
}
return (isset($response)) ? $response : parent::render($request, $e);
return (isset($response)) ? $response : parent::render($request, $exception);
}
/**