File manager - Edit - /home/autoph/public_html/connectv1/vendor/rakit/validation/src/Rules/NotIn.php
Back
<?php namespace Rakit\Validation\Rules; use Rakit\Validation\Helper; use Rakit\Validation\Rule; class NotIn extends Rule { /** @var string */ protected $message = "The :attribute is not allowing :disallowed_values"; /** @var bool */ protected $strict = false; /** * Given $params and assign the $this->params * * @param array $params * @return self */ public function fillParameters(array $params): Rule { if (count($params) == 1 and is_array($params[0])) { $params = $params[0]; } $this->params['disallowed_values'] = $params; return $this; } /** * Set strict value * * @param bool $strict * @return void */ public function strict($strict = true) { $this->strict = $strict; } /** * Check the $value is valid * * @param mixed $value * @return bool */ public function check($value): bool { $this->requireParameters(['disallowed_values']); $disallowedValues = (array) $this->parameter('disallowed_values'); $and = $this->validation ? $this->validation->getTranslation('and') : 'and'; $disallowedValuesText = Helper::join(Helper::wraps($disallowedValues, "'"), ', ', ", {$and} "); $this->setParameterText('disallowed_values', $disallowedValuesText); return !in_array($value, $disallowedValues, $this->strict); } }
| ver. 1.4 |
.
| PHP 7.3.33 | Generation time: 0.32 |
proxy
|
phpinfo
|
Settings