| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class NodeRoot extends Node |
||
| 12 | { |
||
| 13 | public function __construct() |
||
| 14 | { |
||
| 15 | $this->value = new NodeList(); |
||
| 16 | $this->value->setIteratorMode(NodeList::IT_MODE_DELETE); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getParent(int $indent = null, $type = 0):Node |
||
| 20 | { |
||
| 21 | return $this; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getValue(&$parent = null) |
||
| 27 | } |
||
| 28 | } |