Passed
Pull Request — master (#29)
by
unknown
02:52
created
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
     {
271 271
         $result = $this->requestRaw($uri, $method, $options, $async);
272 272
 
273
-        $transformer = function ($response) {
273
+        $transformer = function($response) {
274 274
             return $this->castResponseToType($response, $this->config->getOption('response_type'));
275 275
         };
276 276
 
Please login to merge, or discard this patch.
src/Support/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -425,7 +425,7 @@
 block discarded – undo
425 425
     public static function __set_state($array): object
426 426
     {
427 427
         $obj = new Object();
428
-        foreach($array as $k => $v){
428
+        foreach ($array as $k => $v) {
429 429
             $obj->{$k} = $v;
430 430
         }
431 431
 
Please login to merge, or discard this patch.