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

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

Be aware that the value of this check entirely depends on the output context. The validated text is not expected to be secure in every circumstance, if you want to be sure of that, use a customized regular expression or filter on output. See http://php.net/filter_var for details.
protected isValid ( mixed $value ) : void
$value mixed The value that should be validated
Результат void
    protected function isValid($value)
    {
        if ($value !== filter_var($value, FILTER_SANITIZE_STRING, FILTER_FLAG_NO_ENCODE_QUOTES)) {
            $this->addError('Valid text without any XML tags is expected.', 1221565786);
        }
    }
TextValidator