| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class NodeArrayValue implements NodeValueInterface, ArrayValueInterface |
||
| 13 | { |
||
| 14 | |||
| 15 | private $data; |
||
| 16 | |||
| 17 | private $path; |
||
| 18 | |||
| 19 | private $valueFactory; |
||
| 20 | |||
| 21 | public function __construct( |
||
| 29 | } |
||
| 30 | |||
| 31 | public function createChildIterator(): Iterator |
||
| 32 | { |
||
| 33 | return $this->createChildGenerator(); |
||
| 34 | } |
||
| 35 | |||
| 36 | private function createChildGenerator(): Generator |
||
| 46 | } |
||
| 47 | } |
||
| 48 | |||
| 49 | public function getPath(): PathInterface |
||
| 52 | } |
||
| 53 | } |
||
| 54 |