Browse Source

Merge pull request #4333 from DCzajkowski/develop

Fixed CI
Taylor Otwell 6 years ago
parent
commit
c4e142867c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/Exceptions/Handler.php

+ 3 - 3
app/Exceptions/Handler.php

@@ -47,7 +47,7 @@ class Handler extends ExceptionHandler
      * Convert a validation exception into a response.
      *
      * @param  \Illuminate\Http\Request  $request
-     * @param  Illuminate\Validation\ValidationException  $exception
+     * @param  \Illuminate\Validation\ValidationException  $exception
      * @return \Illuminate\Http\Response
      */
     protected function invalid($request, ValidationException $exception)
@@ -59,8 +59,8 @@ class Handler extends ExceptionHandler
         return $request->expectsJson()
                     ? response()->json(['message' => $message, 'errors' => $errors], 422)
                     : redirect()->back()->withInput()->withErrors(
-                            $errors, $exception->errorBag
-                      );
+                        $errors, $exception->errorBag
+                    );
     }
 
     /**