From 9c66082972c58519b5df171ffa659735a0d45aba Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 6 Aug 2015 12:49:41 -0500 Subject: [PATCH] fix type hitns --- app/Exceptions/Handler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index fb22910b..799152f3 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -28,7 +28,7 @@ class Handler extends ExceptionHandler * @param \Throwable $e * @return void */ - public function report($e) + public function report(Exception $e) { return parent::report($e); } @@ -40,7 +40,7 @@ public function report($e) * @param \Throwable $e * @return \Illuminate\Http\Response */ - public function render($request, $e) + public function render($request, Exception $e) { if ($e instanceof ModelNotFoundException) { $e = new NotFoundHttpException($e->getMessage(), $e);