@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | { |
57 | 57 | $endpointUri = $client->getUserinfoEndpoint(); |
58 | 58 | |
59 | - if (! $endpointUri) { |
|
59 | + if (!$endpointUri) { |
|
60 | 60 | throw new InvalidArgumentException('Invalid issuer userinfo endpoint'); |
61 | 61 | } |
62 | 62 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $payload = \json_decode((string) $response->getBody(), true); |
86 | 86 | } |
87 | 87 | |
88 | - if (! \is_array($payload)) { |
|
88 | + if (!\is_array($payload)) { |
|
89 | 89 | throw new RuntimeException('Unable to parse userinfo claims'); |
90 | 90 | } |
91 | 91 |