/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Validation
NameSizeModeActions
Concerns/-0755rm
Rules/-0755rm
ClosureValidationRule.php13220644editdlrm
composer.json13280755editdlrm
ConditionalRules.php17040644editdlrm
DatabasePresenceVerifier.php37120755editdlrm
DatabasePresenceVerifierInterface.php2870755editdlrm
Factory.php87360755editdlrm
LICENSE.md10750644editdlrm
NotPwnedVerifier.php25850644editdlrm
PresenceVerifierInterface.php8460755editdlrm
Rule.php28030644editdlrm
UnauthorizedException.php1280644editdlrm
ValidatesWhenResolvedTrait.php20030644editdlrm
ValidationData.php29480644editdlrm
ValidationException.php29970644editdlrm
ValidationRuleParser.php81370644editdlrm
ValidationServiceProvider.php21820755editdlrm
Validator.php389080755editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Validation/ValidationException.php (2997B)
response = $response; $this->errorBag = $errorBag; $this->validator = $validator; } /** * Create a new validation exception from a plain array of messages. * * @param array $messages * @return static */ public static function withMessages(array $messages) { return new static(tap(ValidatorFacade::make([], []), function ($validator) use ($messages) { foreach ($messages as $key => $value) { foreach (Arr::wrap($value) as $message) { $validator->errors()->add($key, $message); } } })); } /** * Get all of the validation error messages. * * @return array */ public function errors() { return $this->validator->errors()->messages(); } /** * Set the HTTP status code to be used for the response. * * @param int $status * @return $this */ public function status($status) { $this->status = $status; return $this; } /** * Set the error bag on the exception. * * @param string $errorBag * @return $this */ public function errorBag($errorBag) { $this->errorBag = $errorBag; return $this; } /** * Set the URL to redirect to on a validation error. * * @param string $url * @return $this */ public function redirectTo($url) { $this->redirectTo = $url; return $this; } /** * Get the underlying response instance. * * @return \Symfony\Component\HttpFoundation\Response|null */ public function getResponse() { return $this->response; } }