1 | <?php |
||
7 | final class ConvertToTree |
||
8 | { |
||
9 | /** |
||
10 | * convert flat array of key-value pairs to multidimensional array e.g. foo.bar => 'translation of foo' to [foo => [ bar => 'translation of foo' ]] |
||
11 | * |
||
12 | * @param array $lines |
||
13 | * @return array |
||
14 | */ |
||
15 | 4 | public static function fromFlattened(array $lines = [], $includePage = true) |
|
25 | } |