You are here

public function TagElement::getName in Extensible BBCode 4.0.x

Same name and namespace in other branches
  1. 8.3 src/Parser/Tree/TagElement.php \Drupal\xbbcode\Parser\Tree\TagElement::getName()

Get the canonical (lower-case) tag name of this element.

Return value

string The tag name.

Overrides TagElementInterface::getName

File

src/Parser/Tree/TagElement.php, line 103

Class

TagElement
A BBCode tag element.

Namespace

Drupal\xbbcode\Parser\Tree

Code

public function getName() : string {
  return $this->name;
}