public function NodeElement::getChildren in Extensible BBCode 8.3
Same name and namespace in other branches
- 4.0.x 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 36
Class
- NodeElement
- A node element contains other elements.
Namespace
Drupal\xbbcode\Parser\TreeCode
public function getChildren() : array {
return $this->children;
}