Neos\Fusion\TypoScriptObjects\TagImplementation::isSelfClosingTag PHP Method

isSelfClosingTag() public method

Whether to force a self closing tag (e.g. '
')
public isSelfClosingTag ( string $tagName ) : boolean
$tagName string
return boolean
    public function isSelfClosingTag($tagName)
    {
        return in_array($tagName, self::$SELF_CLOSING_TAGS, true) || (bool) $this->tsValue('selfClosingTag');
    }