@@ -14,8 +14,8 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | public function recusiveImplode(array $array, $glue = ',') |
| 16 | 16 | { |
| 17 | - foreach($array as $key => $element) { |
|
| 18 | - if(is_array($element)) { |
|
| 17 | + foreach ($array as $key => $element) { |
|
| 18 | + if (is_array($element)) { |
|
| 19 | 19 | $array[$key] = $this->recusiveImplode($element, $glue); |
| 20 | 20 | } |
| 21 | 21 | } |