Conditions | 5 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | protected function processEmptyArrays() |
||
15 | { |
||
16 | array_walk($this->countries, function (&$country) { |
||
17 | if (isset($country['languages']) && empty($country['languages'])) { |
||
18 | $country['languages'] = new \stdClass(); |
||
19 | } |
||
20 | |||
21 | if (isset($country['name']['native']) && empty($country['name']['native'])) { |
||
22 | $country['name']['native'] = new \stdClass(); |
||
23 | } |
||
27 |