Passed
Push — master ( 19fc27...8d3ce8 )
by Alexandre
02:16
created
src/Endpoints/AuthorizationEndpoint.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,9 +136,9 @@
 block discarded – undo
136 136
 
137 137
     public function handleRequest(ServerRequestInterface $request): ResponseInterface
138 138
     {
139
-       if($response = $this->verifyRequest($request)) {
140
-           return $response;
141
-       }
139
+        if($response = $this->verifyRequest($request)) {
140
+            return $response;
141
+        }
142 142
 
143 143
         try {
144 144
             if($response = $this->verifyConsent($this->requestData)) {
Please login to merge, or discard this patch.
src/Extensions/OpenID/IdTokenManager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     }
52 52
 
53 53
     public function issueIdToken(RegisteredClient $client,
54
-                                 string $resourceOwnerIdentifier,
55
-                                 array $additionalClaims = []): string
54
+                                    string $resourceOwnerIdentifier,
55
+                                    array $additionalClaims = []): string
56 56
     {
57 57
         $metadata = $client->getMetadata();
58 58
 
Please login to merge, or discard this patch.
src/Extensions/OpenID/IdToken.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     function getClaims() : array
27 27
     {
28
-       return $this->claims;
28
+        return $this->claims;
29 29
     }
30 30
 
31 31
     /**
Please login to merge, or discard this patch.
src/Extensions/PKCE/Credentials/AuthorizationCode.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
                                 int $expiresAt, ?string $requestedScope = null, ?string $redirectUri = null,
25 25
                                 ?string $codeChallenge = null, ?string $codeChallengeMethod = null)
26 26
     {
27
-       parent::__construct($code, $scope, $clientIdentifier, $resourceOwnerIdentifier, $expiresAt, $requestedScope, $redirectUri);
27
+        parent::__construct($code, $scope, $clientIdentifier, $resourceOwnerIdentifier, $expiresAt, $requestedScope, $redirectUri);
28 28
         $this->codeChallenge = $codeChallenge;
29 29
         $this->codeChallengeMethod = $codeChallengeMethod;
30 30
     }
Please login to merge, or discard this patch.