| 1 | <?php |
||
| 25 | class Container extends Node |
||
| 26 | { |
||
| 27 | public function __construct(string $name = '', Node ...$nodes) |
||
| 28 | { |
||
| 29 | parent::__construct(); |
||
| 30 | |||
| 31 | if ($name) { |
||
| 32 | $this->setName($name); |
||
| 33 | } |
||
| 34 | |||
| 35 | foreach ($nodes as $node) { |
||
| 36 | $this->addChild($node); |
||
| 37 | } |
||
| 38 | } |
||
| 39 | |||
| 40 | public function getLineNr(): int |
||
| 48 | |||
| 49 | public function getType(): string |
||
| 53 | } |
||
| 54 |