File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/laravel/framework/src/Illuminate/Validation/Rules/Enum.php
Back
<?php namespace Illuminate\Validation\Rules; use Illuminate\Contracts\Validation\Rule; use Illuminate\Contracts\Validation\ValidatorAwareRule; use TypeError; class Enum implements Rule, ValidatorAwareRule { /** * The type of the enum. * * @var string */ protected $type; /** * The current validator instance. * * @var \Illuminate\Validation\Validator */ protected $validator; /** * Create a new rule instance. * * @param string $type * @return void */ public function __construct($type) { $this->type = $type; } /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * @return bool */ public function passes($attribute, $value) { if ($value instanceof $this->type) { return true; } if (is_null($value) || ! enum_exists($this->type) || ! method_exists($this->type, 'tryFrom')) { return false; } try { return ! is_null($this->type::tryFrom($value)); } catch (TypeError) { return false; } } /** * Get the validation error message. * * @return array */ public function message() { $message = $this->validator->getTranslator()->get('validation.enum'); return $message === 'validation.enum' ? ['The selected :attribute is invalid.'] : $message; } /** * Set the current validator. * * @param \Illuminate\Validation\Validator $validator * @return $this */ public function setValidator($validator) { $this->validator = $validator; return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 1.2 |
proxy
|
phpinfo
|
Settings