You are here

public function RootElement::render in Extensible BBCode 4.0.x

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

Render this element to a string.

Return value

string|\Drupal\xbbcode\Parser\Tree\OutputElementInterface The rendered output.

Overrides ElementInterface::render

File

src/Parser/Tree/RootElement.php, line 13

Class

RootElement
The root element of the tag tree.

Namespace

Drupal\xbbcode\Parser\Tree

Code

public function render() : string {
  return $this
    ->getContent();
}