RootElement.php in Extensible BBCode 8.3
Same filename and directory in other branches
Namespace
Drupal\xbbcode\Parser\TreeFile
src/Parser/Tree/RootElement.phpView source
<?php
namespace Drupal\xbbcode\Parser\Tree;
/**
* The root element of the tag tree.
*/
class RootElement extends NodeElement {
/**
* {@inheritdoc}
*/
public function render() : string {
return $this
->getContent();
}
}
Classes
Name | Description |
---|---|
RootElement | The root element of the tag tree. |