Completed
Push — master ( feaf8d...5d2cf8 )
by Tomas
17:07 queued 02:09
created
src/Misc/ConsoleRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
                     } elseif ($param->getType() === InputParam::TYPE_COOKIE) {
170 170
                         $cookieFields[$key][] = $valueData;
171 171
                     } else {
172
-                        $getFields[$key][] = urlencode((string)$valueData);
172
+                        $getFields[$key][] = urlencode((string) $valueData);
173 173
                     }
174 174
                 } else {
175 175
                     if (in_array($param->getType(), [InputParam::TYPE_POST, InputParam::TYPE_FILE])) {
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
                     } elseif ($param->getType() === InputParam::TYPE_COOKIE) {
180 180
                         $cookieFields[$key] = $valueData;
181 181
                     } else {
182
-                        $getFields[$key] = urlencode((string)$valueData);
182
+                        $getFields[$key] = urlencode((string) $valueData);
183 183
                     }
184 184
                 }
185 185
             }
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     {
224 224
         $result = [];
225 225
         foreach ($values as $key => $value) {
226
-            if (!is_array($value)) {
226
+            if ( ! is_array($value)) {
227 227
                 $result[$key] = $value;
228 228
                 continue;
229 229
             }
Please login to merge, or discard this patch.