Completed
Push — master ( d9f04e...3eb62a )
by Arman
21s queued 11s
created
src/Http/HttpRequest.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -331,8 +331,7 @@
 block discarded – undo
331 331
                 $data = self::$__request[$key];
332 332
             } else {
333 333
                 $data = is_array(self::$__request[$key]) ?
334
-                        filter_var_array(self::$__request[$key], FILTER_SANITIZE_STRING) :
335
-                        filter_var(self::$__request[$key], FILTER_SANITIZE_STRING);
334
+                        filter_var_array(self::$__request[$key], FILTER_SANITIZE_STRING) : filter_var(self::$__request[$key], FILTER_SANITIZE_STRING);
336 335
             }
337 336
         }
338 337
 
Please login to merge, or discard this patch.
src/Libraries/Curl/Curl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
209 209
     private function fetch()
210 210
     {
211 211
         if ($this->curl instanceof MultiCurl) {
212
-            $this->curl->complete(function ($instance) {
212
+            $this->curl->complete(function($instance) {
213 213
                 if ($instance->error) {
214 214
                     $this->errors[] = [
215 215
                         'code' => $instance->getErrorCode(),
Please login to merge, or discard this patch.