Neos\Flow\Validation\Validator\AbstractValidator::isEmpty PHP 메소드

isEmpty() 최종 보호된 메소드

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