@@ -28,11 +28,11 @@ discard block |
||
28 | 28 | |
29 | 29 | protected function handleServerException(UnableToHandleRequestException $exception, ResponseInterface $response): ResponseInterface |
30 | 30 | { |
31 | - if($exception instanceof InvalidRequestException) { |
|
31 | + if ($exception instanceof InvalidRequestException) { |
|
32 | 32 | $this->logCaughtThrowableResultingInHTTPCode(400, $exception, LogLevel::INFO); |
33 | 33 | return $response->withStatus(400, "Bad Request"); |
34 | 34 | |
35 | - } elseif( |
|
35 | + } elseif ( |
|
36 | 36 | $exception instanceof ElementNotFoundException || |
37 | 37 | $exception instanceof UnsupportedMethodException || |
38 | 38 | $exception instanceof UnableToCreateEndpointException |
@@ -40,11 +40,11 @@ discard block |
||
40 | 40 | $this->logCaughtThrowableResultingInHTTPCode(404, $exception, LogLevel::INFO); |
41 | 41 | return $response->withStatus(404, "Not Found"); |
42 | 42 | |
43 | - } elseif($exception instanceof ElementConflictException) { |
|
43 | + } elseif ($exception instanceof ElementConflictException) { |
|
44 | 44 | $this->logCaughtThrowableResultingInHTTPCode(409, $exception, LogLevel::NOTICE); |
45 | 45 | return $response->withStatus(409, "Conflict"); |
46 | 46 | |
47 | - } elseif( |
|
47 | + } elseif ( |
|
48 | 48 | $exception instanceof MethodNotFoundException || |
49 | 49 | $exception instanceof EndpointExecutionException |
50 | 50 | ) { |
@@ -39,19 +39,19 @@ |
||
39 | 39 | */ |
40 | 40 | protected function handleServerException(UnableToHandleRequestException $exception, ResponseInterface $response): ResponseInterface |
41 | 41 | { |
42 | - if($exception instanceof InvalidAPIKeyException || $exception instanceof AccessDeniedException) { |
|
42 | + if ($exception instanceof InvalidAPIKeyException || $exception instanceof AccessDeniedException) { |
|
43 | 43 | $this->logCaughtThrowableResultingInHTTPCode(403, $exception, LogLevel::NOTICE); |
44 | 44 | return $response->withStatus(403, "Access Denied"); |
45 | 45 | |
46 | - } elseif($exception instanceof ThrottleLimitExceededException) { |
|
46 | + } elseif ($exception instanceof ThrottleLimitExceededException) { |
|
47 | 47 | $this->logCaughtThrowableResultingInHTTPCode(429, $exception, LogLevel::WARNING); |
48 | 48 | return $response->withStatus(429, "Too Many Requests"); |
49 | 49 | |
50 | - } elseif($exception instanceof NotAcceptableResponseTypeException) { |
|
50 | + } elseif ($exception instanceof NotAcceptableResponseTypeException) { |
|
51 | 51 | $this->logCaughtThrowableResultingInHTTPCode(406, $exception, LogLevel::INFO); |
52 | 52 | return $response->withStatus(406, "Not Acceptable"); |
53 | 53 | |
54 | - } elseif( |
|
54 | + } elseif ( |
|
55 | 55 | $exception instanceof UnableToCreateAPIResponseException || |
56 | 56 | $exception instanceof UnableToRouteRequestException |
57 | 57 | ) { |