@@ -45,11 +45,11 @@ |
||
45 | 45 | $client = $this->client ?: $request->getAttribute(ClientInterface::class); |
46 | 46 | $authSession = $request->getAttribute(AuthSessionInterface::class); |
47 | 47 | |
48 | - if (! $client instanceof ClientInterface) { |
|
48 | + if (!$client instanceof ClientInterface) { |
|
49 | 49 | throw new LogicException('No OpenID client provided'); |
50 | 50 | } |
51 | 51 | |
52 | - if (null !== $authSession && ! $authSession instanceof AuthSessionInterface) { |
|
52 | + if (null !== $authSession && !$authSession instanceof AuthSessionInterface) { |
|
53 | 53 | throw new LogicException('Invalid auth session provided in attribute ' . AuthSessionInterface::class); |
54 | 54 | } |
55 | 55 |