@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | } |
| 97 | 97 | $outputValidatorErrors[] = $validationResult->getErrors(); |
| 98 | 98 | } |
| 99 | - if (!$outputValid) { |
|
| 99 | + if ( ! $outputValid) { |
|
| 100 | 100 | $response = new JsonApiResponse(500, ['status' => 'error', 'message' => 'Internal server error', 'details' => $outputValidatorErrors]); |
| 101 | 101 | } |
| 102 | 102 | $code = $response->getCode(); |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | |
| 136 | 136 | private function checkAuth(ApiAuthorizationInterface $authorization): bool |
| 137 | 137 | { |
| 138 | - if (!$authorization->authorized()) { |
|
| 138 | + if ( ! $authorization->authorized()) { |
|
| 139 | 139 | $this->getHttpResponse()->setCode(Response::S403_FORBIDDEN); |
| 140 | 140 | $this->sendResponse(new JsonResponse(['status' => 'error', 'message' => $authorization->getErrorMessage()])); |
| 141 | 141 | return false; |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | private function checkRateLimit(RateLimitInterface $rateLimit): bool |
| 147 | 147 | { |
| 148 | 148 | $rateLimitResponse = $rateLimit->check(); |
| 149 | - if (!$rateLimitResponse) { |
|
| 149 | + if ( ! $rateLimitResponse) { |
|
| 150 | 150 | return true; |
| 151 | 151 | } |
| 152 | 152 | |
@@ -154,12 +154,12 @@ discard block |
||
| 154 | 154 | $remaining = $rateLimitResponse->getRemaining(); |
| 155 | 155 | $retryAfter = $rateLimitResponse->getRetryAfter(); |
| 156 | 156 | |
| 157 | - $this->getHttpResponse()->addHeader('X-RateLimit-Limit', (string)$limit); |
|
| 158 | - $this->getHttpResponse()->addHeader('X-RateLimit-Remaining', (string)$remaining); |
|
| 157 | + $this->getHttpResponse()->addHeader('X-RateLimit-Limit', (string) $limit); |
|
| 158 | + $this->getHttpResponse()->addHeader('X-RateLimit-Remaining', (string) $remaining); |
|
| 159 | 159 | |
| 160 | 160 | if ($remaining === 0) { |
| 161 | 161 | $this->getHttpResponse()->setCode(Response::S429_TOO_MANY_REQUESTS); |
| 162 | - $this->getHttpResponse()->addHeader('Retry-After', (string)$retryAfter); |
|
| 162 | + $this->getHttpResponse()->addHeader('Retry-After', (string) $retryAfter); |
|
| 163 | 163 | $response = $rateLimitResponse->getErrorResponse() ?: new JsonResponse(['status' => 'error', 'message' => 'Too many requests. Retry after ' . $retryAfter . ' seconds.']); |
| 164 | 164 | $this->sendResponse($response); |
| 165 | 165 | return false; |
@@ -239,11 +239,11 @@ discard block |
||
| 239 | 239 | |
| 240 | 240 | private function getRequestDomain(): ?string |
| 241 | 241 | { |
| 242 | - if (!filter_input(INPUT_SERVER, 'HTTP_REFERER')) { |
|
| 242 | + if ( ! filter_input(INPUT_SERVER, 'HTTP_REFERER')) { |
|
| 243 | 243 | return null; |
| 244 | 244 | } |
| 245 | 245 | $refererParsedUrl = parse_url(filter_input(INPUT_SERVER, 'HTTP_REFERER')); |
| 246 | - if (!(isset($refererParsedUrl['scheme']) && isset($refererParsedUrl['host']))) { |
|
| 246 | + if ( ! (isset($refererParsedUrl['scheme']) && isset($refererParsedUrl['host']))) { |
|
| 247 | 247 | return null; |
| 248 | 248 | } |
| 249 | 249 | $url = $refererParsedUrl['scheme'] . '://' . $refererParsedUrl['host']; |