Fix typo in exception handler

This commit is contained in:
Dane Everitt 2016-09-07 18:25:11 -04:00
parent 05f0f48caf
commit 33ca221b99

View file

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