Neos\Flow\Validation\Validator\AbstractValidator::isEmpty PHP Method

isEmpty() final protected method

final protected isEmpty ( mixed $value ) : boolean
$value mixed
return boolean TRUE if the given $value is NULL or an empty string ('')
    protected final function isEmpty($value)
    {
        return $value === null || $value === '';
    }