You are here

public function NodeElement::getChildren in Extensible BBCode 4.0.x

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

Get all children of the element.

Return value

\Drupal\xbbcode\Parser\Tree\ElementInterface[] The children.

Overrides NodeElementInterface::getChildren

File

src/Parser/Tree/NodeElement.php, line 34

Class

NodeElement
A node element contains other elements.

Namespace

Drupal\xbbcode\Parser\Tree

Code

public function getChildren() : array {
  return $this->children;
}