/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Validation/Rules/NotIn.php
55 строк
1 KB
Sumaia Zaman
[13.x] Fix deprecation warning in In and NotIn rules when values contain null (#59576)
07 апр 2026, 16:05
Не верифицирован
07 апр 2026, 16:05
a3a626b
Код
Авторство
О чём код?
<?php namespace Illuminate\Validation\Rules; use Illuminate\Contracts\Support\Arrayable; use Stringable; use function Illuminate\Support\enum_value; class NotIn implements Stringable { /** * The name of the rule. * * @var string */ protected $rule = 'not_in'; /** * The accepted values. * * @var array */ protected $values; /** * Create a new "not in" rule instance. * * @param \Illuminate\Contracts\Support\Arrayable|\UnitEnum|array|string $values */ public function __construct($values) { if ($values instanceof Arrayable) { $values = $values->toArray(); } $this->values = is_array($values) ? $values : func_get_args(); } /** * Convert the rule to a validation string. * * @return string */ public function __toString() { $values = array_map(function ($value) { $value = enum_value($value); return '"'.str_replace('"', '""', (string) $value).'"'; }, $this->values); return $this->rule.':'.implode(',', $values); } }