1 | <?php |
||
7 | class Inflate |
||
8 | { |
||
9 | /** |
||
10 | * Return proper tree structure of flattened node collection. |
||
11 | * Nodes from a flat collection retain their relations so |
||
12 | * we just need to return the root nodes |
||
13 | * |
||
14 | * @param NodeCollection $flatCollection |
||
15 | * @return NodeCollection |
||
16 | */ |
||
17 | 6 | public function __invoke(NodeCollection $flatCollection): NodeCollection |
|
31 | } |
||
32 |