@@ -330,7 +330,7 @@ |
||
| 330 | 330 | /** |
| 331 | 331 | * @return array |
| 332 | 332 | */ |
| 333 | - public function getTransactionInfo() : ?array |
|
| 333 | + public function getTransactionInfo() : ? array |
|
| 334 | 334 | { |
| 335 | 335 | return $this->transactionInfo; |
| 336 | 336 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | public static function simplePayload(array $payload) : array |
| 22 | 22 | { |
| 23 | - $payload = array_filter($payload, function ($val) { |
|
| 23 | + $payload = array_filter($payload, function($val) { |
|
| 24 | 24 | if ($val instanceof PayloadInterface) { |
| 25 | 25 | $val = $val->getPayload(); |
| 26 | 26 | } |
@@ -268,7 +268,7 @@ |
||
| 268 | 268 | $optionsResolver = new OptionsResolver(); |
| 269 | 269 | $this->configureOptions($optionsResolver); |
| 270 | 270 | |
| 271 | - $url = $this->baseUrl . $uri; |
|
| 271 | + $url = $this->baseUrl.$uri; |
|
| 272 | 272 | $options = $optionsResolver->resolve(array_replace($this->defaultOptions, $options)); |
| 273 | 273 | $this->lastResponse = $this->getClient()->request($method, $url, $options); |
| 274 | 274 | |