You are here

public function NodeElementInterface::append in Extensible BBCode 4.0.x

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

Append an element to the children of this element.

Parameters

\Drupal\xbbcode\Parser\Tree\ElementInterface $element: The new element.

2 methods override NodeElementInterface::append()
NodeElement::append in src/Parser/Tree/NodeElement.php
Append an element to the children of this element.
PreparedTagElement::append in src/PreparedTagElement.php
Append an element to the children of this element.

File

src/Parser/Tree/NodeElementInterface.php, line 16

Class

NodeElementInterface
Interface for node elements.

Namespace

Drupal\xbbcode\Parser\Tree

Code

public function append(ElementInterface $element) : void;