mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
Fixed CI
This commit is contained in:
parent
fef413ff0e
commit
1270a0b3a2
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user