Browse Source

Merge branch 'master' into develop

Graham Campbell 4 years ago
parent
commit
db940594ad
1 changed files with 5 additions and 1 deletions
  1. 5 1
      app/Exceptions/Handler.php

+ 5 - 1
app/Exceptions/Handler.php

@@ -31,6 +31,8 @@ class Handler extends ExceptionHandler
      *
      * @param  \Throwable  $exception
      * @return void
+     *
+     * @throws \Exception
      */
     public function report(Throwable $exception)
     {
@@ -42,7 +44,9 @@ class Handler extends ExceptionHandler
      *
      * @param  \Illuminate\Http\Request  $request
      * @param  \Throwable  $exception
-     * @return \Illuminate\Http\Response
+     * @return \Symfony\Component\HttpFoundation\Response
+     *
+     * @throws \Throwable
      */
     public function render($request, Throwable $exception)
     {