From 46c2f99b06d3b804fa119da309016f05faff1bb2 Mon Sep 17 00:00:00 2001 From: sephster Date: Sat, 1 Sep 2018 13:17:36 +0100 Subject: [PATCH] Change function name to be more explicit --- src/Grant/AuthCodeGrant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grant/AuthCodeGrant.php b/src/Grant/AuthCodeGrant.php index 407b98cf..a4360bae 100644 --- a/src/Grant/AuthCodeGrant.php +++ b/src/Grant/AuthCodeGrant.php @@ -52,7 +52,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant /** * Disable the requirement for a code challenge for public clients. */ - public function disableCodeChallengeForPublicClients() + public function disableRequireCodeChallengeForPublicClients() { $this->requireCodeChallengeForPublicClients = false; }