Revert bad changes to the exception handler

This commit is contained in:
Graham Campbell 2015-10-30 18:54:41 +00:00
parent c18ee4917d
commit 13b799196b
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class Handler extends ExceptionHandler
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
* @param \Throwable $e
* @param \Exception $e
* @return void
*/
public function report(Exception $e)
@ -41,7 +41,7 @@ public function report(Exception $e)
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Throwable $e
* @param \Exception $e
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $e)