mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-22 13:09:44 +05:30
Fix coding standard issue
This commit is contained in:
parent
970df8f34b
commit
4a464dd336
@ -297,7 +297,9 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
|
|||||||
throw OAuthServerException::invalidRequest(
|
throw OAuthServerException::invalidRequest(
|
||||||
'code_challenge_method',
|
'code_challenge_method',
|
||||||
'Code challenge method must be one of ' . implode(', ', array_map(
|
'Code challenge method must be one of ' . implode(', ', array_map(
|
||||||
function ($method) { return '`' . $method . '`'; },
|
function ($method) {
|
||||||
|
return '`' . $method . '`';
|
||||||
|
},
|
||||||
array_keys($this->codeChallengeVerifiers)
|
array_keys($this->codeChallengeVerifiers)
|
||||||
))
|
))
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user