Browse Source

fix type hitns

Taylor Otwell 9 years ago
parent
commit
9c66082972
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Exceptions/Handler.php

+ 2 - 2
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 @@ class Handler extends ExceptionHandler
      * @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);