From f612e105bd93814a8c2306e413ebd8b8d3d0d6d8 Mon Sep 17 00:00:00 2001 From: nhorvath Date: Fri, 2 Aug 2013 14:51:13 -0400 Subject: [PATCH] Update Implicit.php Fix typo in class name. Change "Implict" to "Implicit" --- src/League/OAuth2/Server/Grant/Implicit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/League/OAuth2/Server/Grant/Implicit.php b/src/League/OAuth2/Server/Grant/Implicit.php index c3f39c09..f8d1f7e7 100644 --- a/src/League/OAuth2/Server/Grant/Implicit.php +++ b/src/League/OAuth2/Server/Grant/Implicit.php @@ -22,7 +22,7 @@ use League\OAuth2\Server\Storage\ScopeInterface; /** * Client credentials grant class */ -class Implict implements GrantTypeInterface { +class Implicit implements GrantTypeInterface { /** * Grant identifier @@ -104,4 +104,4 @@ class Implict implements GrantTypeInterface { return $response; } -} \ No newline at end of file +}