@@ -36,13 +36,13 @@ discard block |
||
36 | 36 | public static function validateParams($params = null, $required = false): void |
37 | 37 | { |
38 | 38 | if ($required) { |
39 | - if (empty($params) || ! is_array($params)) { |
|
39 | + if (empty($params) || !is_array($params)) { |
|
40 | 40 | $message = 'The parameter passed must be an array and must not be empty'; |
41 | 41 | |
42 | 42 | throw new InvalidArgumentException($message); |
43 | 43 | } |
44 | 44 | } |
45 | - if ($params && ! is_array($params)) { |
|
45 | + if ($params && !is_array($params)) { |
|
46 | 46 | $message = 'The parameter passed must be an array'; |
47 | 47 | |
48 | 48 | throw new InvalidArgumentException($message); |
@@ -60,10 +60,10 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @return array|object (the JSON response as array or object) |
62 | 62 | */ |
63 | - public static function staticRequest($method, $url, $params = [], $return_type = Abokifx::ARRAY_RESPONSE) |
|
63 | + public static function staticRequest($method, $url, $params = [ ], $return_type = Abokifx::ARRAY_RESPONSE) |
|
64 | 64 | { |
65 | 65 | if (Abokifx::$responseType != Abokifx::ARRAY_RESPONSE && Abokifx::$responseType != Abokifx::OBJECT_RESPONSE) { |
66 | - throw new InvalidArgumentException('Return type can only be '. Abokifx::OBJECT_RESPONSE .' or '. Abokifx::ARRAY_RESPONSE); |
|
66 | + throw new InvalidArgumentException('Return type can only be '.Abokifx::OBJECT_RESPONSE.' or '.Abokifx::ARRAY_RESPONSE); |
|
67 | 67 | } |
68 | 68 | static::setHttpResponse($method, $url, $params); |
69 | 69 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | [ |
86 | 86 | 'base_uri' => Abokifx::$apiBaseUrl, |
87 | 87 | 'headers' => [ |
88 | - 'Authorization' => "Bearer " . $auth, |
|
88 | + 'Authorization' => "Bearer ".$auth, |
|
89 | 89 | 'Content-Type' => 'application/json', |
90 | 90 | 'Accept' => 'application/json', |
91 | 91 | ], |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @throws IsNullException |
102 | 102 | * @throws ApiErrorException |
103 | 103 | */ |
104 | - private static function setHttpResponse($method, $url, $body = []): \GuzzleHttp\Psr7\Response |
|
104 | + private static function setHttpResponse($method, $url, $body = [ ]): \GuzzleHttp\Psr7\Response |
|
105 | 105 | { |
106 | 106 | if (is_null($method)) { |
107 | 107 | throw new IsNullException('Empty method not allowed'); |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | |
112 | 112 | try { |
113 | 113 | static::$response = static::$client->{strtolower($method)}( |
114 | - Abokifx::$apiBaseUrl . '/' . $url, |
|
115 | - ['body' => json_encode($body)] |
|
114 | + Abokifx::$apiBaseUrl.'/'.$url, |
|
115 | + [ 'body' => json_encode($body) ] |
|
116 | 116 | ); |
117 | 117 | |
118 | 118 | return static::$response; |
@@ -138,6 +138,6 @@ discard block |
||
138 | 138 | */ |
139 | 139 | private static function getResponseData(): array |
140 | 140 | { |
141 | - return json_decode(static::$response->getBody(), true)['response']; |
|
141 | + return json_decode(static::$response->getBody(), true)[ 'response' ]; |
|
142 | 142 | } |
143 | 143 | } |