Passed
Push — master ( c3ac0c...e9d9ea )
by Thomas Mauro
03:09
created
src/Middleware/CallbackMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,11 +45,11 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.