Renamed Grants

This commit is contained in:
Alex Bilbie 2014-05-02 17:24:55 +01:00
parent 97fd115530
commit ffc25fb276
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ use League\OAuth2\Server\Storage\ScopeInterface;
/**
* Auth code grant class
*/
class AuthCode extends AbstractGrant
class AuthCodeGrant extends AbstractGrant
{
/**
* Grant identifier

View File

@ -25,7 +25,7 @@ use League\OAuth2\Server\Storage\ScopeInterface;
/**
* Client credentials grant class
*/
class ClientCredentials extends AbstractGrant
class ClientCredentialsGrant extends AbstractGrant
{
/**
* Grant identifier

View File

@ -26,7 +26,7 @@ use League\OAuth2\Server\Storage\ScopeInterface;
/**
* Password grant class
*/
class Password extends AbstractGrant
class PasswordGrant extends AbstractGrant
{
/**
* Grant identifier

View File

@ -26,7 +26,7 @@ use League\OAuth2\Server\Entity\ClientEntity;
/**
* Referesh token grant
*/
class RefreshToken extends AbstractGrant
class RefreshTokenGrant extends AbstractGrant
{
/**
* {@inheritdoc}