Neos\Flow\Validation\Validator\AlphanumericValidator::isValid PHP Метод

isValid() защищенный Метод

The given $value is valid if it is an alphanumeric string, which is defined as [[:alnum:]].
protected isValid ( mixed $value ) : void
$value mixed The value that should be validated
Результат void
    protected function isValid($value)
    {
        if (!is_string($value) || preg_match('/^[[:alnum:]]*$/u', $value) !== 1) {
            $this->addError('Only regular characters (a to z, umlauts, ...) and numbers are allowed.', 1221551320);
        }
    }
AlphanumericValidator