@@ -121,8 +121,7 @@ |
||
121 | 121 | * specified in the Authorization Request using the application/x-www-form-urlencoded format, |
122 | 122 | * unless a different Response Mode was specified. |
123 | 123 | */ |
124 | - } |
|
125 | - catch (OAuthException $e) { |
|
124 | + } catch (OAuthException $e) { |
|
126 | 125 | /** |
127 | 126 | * If the Authorization Server encounters any error, it MUST return an error response, per Section 3.1.2.6. |
128 | 127 | */ |
@@ -24,7 +24,7 @@ |
||
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 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | |
26 | 26 | function getClaims() : array |
27 | 27 | { |
28 | - return $this->claims; |
|
28 | + return $this->claims; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |