@@ -40,7 +40,9 @@ |
||
40 | 40 | public function getJSON(): ?array |
41 | 41 | { |
42 | 42 | $data = json_decode($this->result, true); |
43 | - if (!is_array($data)) return null; |
|
43 | + if (!is_array($data)) { |
|
44 | + return null; |
|
45 | + } |
|
44 | 46 | |
45 | 47 | return $data; |
46 | 48 | } |
@@ -44,7 +44,9 @@ |
||
44 | 44 | */ |
45 | 45 | public function getAPIChallenge(): string |
46 | 46 | { |
47 | - if (!$this->_api_challenge) $this->_api_challenge = Utils::create_random_string(128); |
|
47 | + if (!$this->_api_challenge) { |
|
48 | + $this->_api_challenge = Utils::create_random_string(128); |
|
49 | + } |
|
48 | 50 | return $this->_api_challenge; |
49 | 51 | } |
50 | 52 |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | public function __construct(string $app_id, string $app_secret, $auth_domain = self::AUTH_DOMAIN) |
23 | 23 | { |
24 | 24 | if (!$app_id || !$app_secret) { |
25 | - throw new InvalidArgumentException(static::class . "expects an app_id and app_secret"); |
|
25 | + throw new InvalidArgumentException(static::class."expects an app_id and app_secret"); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | $this->setAppID($app_id); |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | |
129 | 129 | if (!$response->isValid() || !$json || !array_key_exists('access_token', $json)) { |
130 | 130 | return $json['access_token']; |
131 | - } else { |
|
131 | + }else { |
|
132 | 132 | return ''; |
133 | 133 | } |
134 | 134 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | $randomString = ''; |
18 | 18 | |
19 | 19 | for ($i = 0; $i < $length; $i++) { |
20 | - $randomString .= $characters[rand(0, $charactersLength - 1)]; |
|
20 | + $randomString .= $characters[rand(0, $charactersLength-1)]; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | return $randomString; |
@@ -29,6 +29,6 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function pack(string $str): string |
31 | 31 | { |
32 | - return rtrim(strtr(base64_encode(pack('H*', hash('sha256', $str))), '+/', '-_'), '='); |
|
32 | + return rtrim(strtr(base64_encode(pack('H*', hash('sha256', $str))), '+/', '-_'), '='); |
|
33 | 33 | } |
34 | 34 | } |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | } |
189 | 189 | |
190 | 190 | if ($this->_enable_cache && $this->getMethod() === 'GET') { |
191 | - $cache_key = urlencode($request_uri) . implode(',', $send_headers); |
|
191 | + $cache_key = urlencode($request_uri).implode(',', $send_headers); |
|
192 | 192 | if (array_key_exists($cache_key, self::$_cache)) { |
193 | 193 | return self::$_cache[$cache_key]; |
194 | 194 | } |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | curl_setopt($ch, CURLOPT_AUTOREFERER, true); |
209 | 209 | |
210 | 210 | if (!empty($send_headers)) curl_setopt($ch, CURLOPT_HTTPHEADER, $send_headers); |
211 | - if (!is_null($post_data)) { |
|
211 | + if (!is_null($post_data)) { |
|
212 | 212 | curl_setopt($ch, CURLOPT_POST, 1); |
213 | 213 | curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); |
214 | 214 | } |
@@ -40,8 +40,12 @@ discard block |
||
40 | 40 | public function __construct(string $url, array $data = [], array $headers = []) |
41 | 41 | { |
42 | 42 | $this->setURL($url); |
43 | - foreach ($data as $name => $value) $this->addDataParam($name, $value); |
|
44 | - foreach ($headers as $name => $value) $this->addHeader($name, $value); |
|
43 | + foreach ($data as $name => $value) { |
|
44 | + $this->addDataParam($name, $value); |
|
45 | + } |
|
46 | + foreach ($headers as $name => $value) { |
|
47 | + $this->addHeader($name, $value); |
|
48 | + } |
|
45 | 49 | } |
46 | 50 | |
47 | 51 | /** |
@@ -100,7 +104,9 @@ discard block |
||
100 | 104 | |
101 | 105 | public function removeDataParam(string $name): Curl |
102 | 106 | { |
103 | - if (array_key_exists($name, $this->_data)) unset($this->_data[$name]); |
|
107 | + if (array_key_exists($name, $this->_data)) { |
|
108 | + unset($this->_data[$name]); |
|
109 | + } |
|
104 | 110 | return $this; |
105 | 111 | } |
106 | 112 | |
@@ -129,7 +135,9 @@ discard block |
||
129 | 135 | */ |
130 | 136 | public function removeHeader(string $name): Curl |
131 | 137 | { |
132 | - if (array_key_exists($name, $this->_headers)) unset($this->_headers[$name]); |
|
138 | + if (array_key_exists($name, $this->_headers)) { |
|
139 | + unset($this->_headers[$name]); |
|
140 | + } |
|
133 | 141 | return $this; |
134 | 142 | } |
135 | 143 | |
@@ -173,13 +181,17 @@ discard block |
||
173 | 181 | $request_uri = $this->getURL(); |
174 | 182 | |
175 | 183 | // Headers |
176 | - foreach ($this->getHeaders() as $k => $v) $send_headers[] = "{$k}: {$v}"; |
|
184 | + foreach ($this->getHeaders() as $k => $v) { |
|
185 | + $send_headers[] = "{$k}: {$v}"; |
|
186 | + } |
|
177 | 187 | |
178 | 188 | // Request Data |
179 | 189 | switch ($this->getMethod()) { |
180 | 190 | case 'GET': |
181 | 191 | case 'DELETE': |
182 | - foreach ($this->getDataParams() as $name => $value) $request_uri = URL::setGetVar($name, $value, $request_uri); |
|
192 | + foreach ($this->getDataParams() as $name => $value) { |
|
193 | + $request_uri = URL::setGetVar($name, $value, $request_uri); |
|
194 | + } |
|
183 | 195 | break; |
184 | 196 | |
185 | 197 | case 'POST': |
@@ -210,7 +222,9 @@ discard block |
||
210 | 222 | curl_setopt($ch, CURLINFO_HEADER_OUT, true); |
211 | 223 | curl_setopt($ch, CURLOPT_AUTOREFERER, true); |
212 | 224 | |
213 | - if (!empty($send_headers)) curl_setopt($ch, CURLOPT_HTTPHEADER, $send_headers); |
|
225 | + if (!empty($send_headers)) { |
|
226 | + curl_setopt($ch, CURLOPT_HTTPHEADER, $send_headers); |
|
227 | + } |
|
214 | 228 | if (!is_null($post_data)) { |
215 | 229 | curl_setopt($ch, CURLOPT_POST, 1); |
216 | 230 | curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); |
@@ -220,7 +234,9 @@ discard block |
||
220 | 234 | $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); |
221 | 235 | |
222 | 236 | $response = new CurlResponse((int) $http_code, (string) $result); |
223 | - if ($this->_enable_cache && isset($cache_key)) self::$_cache[$cache_key] = $response; |
|
237 | + if ($this->_enable_cache && isset($cache_key)) { |
|
238 | + self::$_cache[$cache_key] = $response; |
|
239 | + } |
|
224 | 240 | |
225 | 241 | return $response; |
226 | 242 | } |
@@ -107,11 +107,15 @@ discard block |
||
107 | 107 | |
108 | 108 | $this->_max_items = (int) $data['available_items']; |
109 | 109 | |
110 | - if (empty($data['items'])) return $this->_items[$page] = []; |
|
110 | + if (empty($data['items'])) { |
|
111 | + return $this->_items[$page] = []; |
|
112 | + } |
|
111 | 113 | |
112 | 114 | foreach ($data['items'] as $item) { |
113 | 115 | $obj = ObjectFactory::make($this->getClient(), $item); |
114 | - if (!$obj) continue; |
|
116 | + if (!$obj) { |
|
117 | + continue; |
|
118 | + } |
|
115 | 119 | |
116 | 120 | $this->_items[$page][] = $obj; |
117 | 121 | } |
@@ -126,7 +130,9 @@ discard block |
||
126 | 130 | */ |
127 | 131 | public function offsetGet($offset): ?ObjectResource |
128 | 132 | { |
129 | - foreach ($this as $i => $obj) if ($i === $offset) return $obj; |
|
133 | + foreach ($this as $i => $obj) { |
|
134 | + if ($i === $offset) return $obj; |
|
135 | + } |
|
130 | 136 | return null; |
131 | 137 | } |
132 | 138 | |
@@ -157,7 +163,9 @@ discard block |
||
157 | 163 | */ |
158 | 164 | public function offsetExists($offset): bool |
159 | 165 | { |
160 | - foreach ($this as $i => $obj) if ($offset === $i) return true; |
|
166 | + foreach ($this as $i => $obj) { |
|
167 | + if ($offset === $i) return true; |
|
168 | + } |
|
161 | 169 | return false; |
162 | 170 | } |
163 | 171 | |
@@ -213,6 +221,8 @@ discard block |
||
213 | 221 | */ |
214 | 222 | public function first(): ?Model |
215 | 223 | { |
216 | - foreach ($this as $obj) return $obj; |
|
224 | + foreach ($this as $obj) { |
|
225 | + return $obj; |
|
226 | + } |
|
217 | 227 | } |
218 | 228 | } |
@@ -212,20 +212,20 @@ |
||
212 | 212 | $t = $this->getItems(1); |
213 | 213 | $c = $this->count(); |
214 | 214 | |
215 | - return (function () use ($t, $c) { |
|
215 | + return (function() use ($t, $c) { |
|
216 | 216 | $i = 0; |
217 | 217 | $x = 0; |
218 | 218 | |
219 | 219 | while ($i < $c) { |
220 | 220 | if ($x === 0) { |
221 | 221 | $x = $this->_page_length; |
222 | - $t = $this->getItems((int) floor($i / $this->_page_length) + 1); |
|
222 | + $t = $this->getItems((int) floor($i / $this->_page_length)+1); |
|
223 | 223 | } |
224 | 224 | |
225 | - yield $i => $t[$this->_page_length - $x]; |
|
225 | + yield $i => $t[$this->_page_length-$x]; |
|
226 | 226 | |
227 | 227 | $x -= 1; |
228 | - $i ++; |
|
228 | + $i++; |
|
229 | 229 | } |
230 | 230 | })(); |
231 | 231 | } |
@@ -45,7 +45,9 @@ |
||
45 | 45 | public function __get(string $service): ?ApiService |
46 | 46 | { |
47 | 47 | $obj = ServiceFactory::inst($this, $service); |
48 | - if (!$obj) throw new BadMethodException("Service for `{$service}` does not exist"); |
|
48 | + if (!$obj) { |
|
49 | + throw new BadMethodException("Service for `{$service}` does not exist"); |
|
50 | + } |
|
49 | 51 | |
50 | 52 | return $obj; |
51 | 53 | } |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | public function curl_api(string $url, string $method = 'GET', array $data = [], array $headers = []): CurlResponse |
134 | 134 | { |
135 | 135 | $url = URL::is_absolute_url($url) ? $url |
136 | - : 'https://' . rtrim($this->getHost(), '/') . '/' . ltrim($url, '/'); |
|
136 | + : 'https://'.rtrim($this->getHost(), '/').'/'.ltrim($url, '/'); |
|
137 | 137 | |
138 | 138 | $curl = new Curl($url, $data, $headers); |
139 | 139 | |
@@ -152,6 +152,6 @@ discard block |
||
152 | 152 | */ |
153 | 153 | protected function auth_url(string $path): string |
154 | 154 | { |
155 | - return rtrim($this->_auth_domain, '/') . '/' . ltrim($path, '/'); |
|
155 | + return rtrim($this->_auth_domain, '/').'/'.ltrim($path, '/'); |
|
156 | 156 | } |
157 | 157 | } |
@@ -19,7 +19,9 @@ |
||
19 | 19 | public static function inst(Connector $connector, string $service): ?ApiService |
20 | 20 | { |
21 | 21 | $service = strtolower($service); |
22 | - if (!array_key_exists($service, ClassMap::SERVICES)) return null; |
|
22 | + if (!array_key_exists($service, ClassMap::SERVICES)) { |
|
23 | + return null; |
|
24 | + } |
|
23 | 25 | |
24 | 26 | $cls = ClassMap::SERVICES[$service]; |
25 | 27 | return new $cls($connector); |
@@ -98,7 +98,9 @@ |
||
98 | 98 | { |
99 | 99 | $curl = $this->getClient()->curl_api($url, 'DELETE', $params); |
100 | 100 | |
101 | - if ($curl->isValid()) return true; |
|
101 | + if ($curl->isValid()) { |
|
102 | + return true; |
|
103 | + } |
|
102 | 104 | |
103 | 105 | throw new ApiException($curl->getError()); |
104 | 106 | } |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | public function fetch(int $id): ?Customer |
24 | 24 | { |
25 | 25 | /** @var Customer|null $fetch */ |
26 | - $fetch = $this->_get('api/customers/customer' . $id); |
|
26 | + $fetch = $this->_get('api/customers/customer'.$id); |
|
27 | 27 | return $fetch; |
28 | 28 | } |
29 | 29 | |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | public function update(int $id, array $data): ?Customer |
51 | 51 | { |
52 | 52 | /** @var Customer|null $post */ |
53 | - $post = $this->_post('api/customers/customer/' . $id, $data); |
|
53 | + $post = $this->_post('api/customers/customer/'.$id, $data); |
|
54 | 54 | return $post; |
55 | 55 | } |
56 | 56 |