Conditions | 4 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
26 | $this->data = &$data; |
||
27 | $this->interpolateArray($data); |
||
28 | } |
||
29 | |||
30 | private function interpolateArray(&$data) |
||
31 | { |
||
32 | if (is_array($data)) { |
||
33 | foreach ($data as &$item) { |
||
34 | $this->interpolateArray($item); |
||
35 | } |
||
36 | } elseif (is_string($data)) { |
||
37 | $data = preg_replace_callback('/\\$(\\w+)\\[\'(.+?)\'\\]/', function ($matches) { |
||
38 | return $this->get($matches[1], $matches[2]); |
||
61 |
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: