Update Implicit.php

Fix typo in class name. Change "Implict" to "Implicit"
This commit is contained in:
nhorvath 2013-08-02 14:51:13 -04:00
parent 56f63bb4c0
commit f612e105bd

View File

@ -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;
}
}
}