$children */ public function __construct( private Element $element, private array $children, ) {} public function getElement(): Element { return $this->element; } /** * @return list */ public function getChildren(): array { return $this->children; } }