Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | trait WithArrayHelpers |
||
13 | { |
||
14 | /** |
||
15 | * This helper does process each element of the provided array recursively. |
||
16 | * It does so allowing for modifications to the provided array and without |
||
17 | * using actual recursive calls. |
||
18 | * |
||
19 | * @return array |
||
20 | */ |
||
21 | protected static function applyRecursively(array $data, Closure $callback) |
||
49 |