| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 70.59% |
| Changes | 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 | 2 | public function __construct( |
|
| 29 | 2 | } |
|
| 30 | |||
| 31 | 2 | public function createChildIterator(): Iterator |
|
| 32 | { |
||
| 33 | 2 | return $this->createChildGenerator(); |
|
| 34 | } |
||
| 35 | |||
| 36 | 2 | private function createChildGenerator(): Generator |
|
| 46 | } |
||
| 47 | } |
||
| 48 | |||
| 49 | public function getPath(): PathInterface |
||
| 52 | } |
||
| 53 | } |
||
| 54 |