@@ -21,7 +21,7 @@ |
||
21 | 21 | */ |
22 | 22 | protected function flushDisabledFilters(array $filters, array $enabled) |
23 | 23 | { |
24 | - array_walk($filters, function (&$param, $field) use ($enabled) { |
|
24 | + array_walk($filters, function(&$param, $field) use ($enabled) { |
|
25 | 25 | // 'api_key' field |
26 | 26 | if ($this->isApiKey($field) === true) { |
27 | 27 | return $param; |
@@ -76,7 +76,7 @@ |
||
76 | 76 | */ |
77 | 77 | public function isParamOfTypeMultiple($param, $types) |
78 | 78 | { |
79 | - array_walk($types, function (&$type) use ($param) { |
|
79 | + array_walk($types, function(&$type) use ($param) { |
|
80 | 80 | $type = $this->isParamOfTypeSingle($param, $type); |
81 | 81 | }); |
82 | 82 |