Completed
Branch master (2e1e23)
by Grzegorz
02:52 queued 28s
created
src/Api/Filters/FilterHandlers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Api/Filters/FilterValidation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.