Merge pull request #4333 from DCzajkowski/develop

Fixed CI
This commit is contained in:
Taylor Otwell
2017-07-15 14:25:50 -05:00
committed by GitHub

View File

@@ -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
);
}
/**