Neos\Fusion\TypoScriptObjects\AttributesImplementation::getAllowEmpty PHP Метод

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

Whether empty attributes (HTML5 syntax) should be allowed
protected getAllowEmpty ( ) : boolean
Результат boolean
    protected function getAllowEmpty()
    {
        $allowEmpty = $this->tsValue('__meta/allowEmpty');
        if ($allowEmpty === null) {
            return true;
        } else {
            return (bool) $allowEmpty;
        }
    }
AttributesImplementation