Fix variable name

This commit is contained in:
sephster 2018-09-18 18:01:24 +01:00
parent 133d9cc97a
commit fcd6eb8a3c
No known key found for this signature in database
GPG Key ID: 077754CA23023F4F

View File

@ -178,7 +178,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
);
}
if (isset($this->codeChallengeVerifiers[$authCodePayLoad->code_challenge_method])) {
if (isset($this->codeChallengeVerifiers[$authCodePayload->code_challenge_method])) {
$codeChallengeVerifier = $this->codeChallengeVerifiers[$authCodePayload->code_challenge_method];
if ($codeChallengeVerifier->verifyCodeChallenge($codeVerifier, $authCodePayload->code_challenge) === false) {