@@ -270,7 +270,7 @@ |
||
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 |
@@ -425,7 +425,7 @@ |
||
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 |