You are here

public function PreparedTagElement::getClosingName in Extensible BBCode 4.0.x

Get the original closing tag name.

Return value

string The closing tag name.

Overrides TagElementInterface::getClosingName

File

src/PreparedTagElement.php, line 66

Class

PreparedTagElement
Adapter for the tag element that marks markup as safe.

Namespace

Drupal\xbbcode

Code

public function getClosingName() : string {
  return $this->tag
    ->getClosingName();
}