More docblock fixes

This commit is contained in:
Alex Bilbie 2014-11-07 01:48:23 +00:00
parent d16b1b72ba
commit 9bb7af6f83
5 changed files with 5 additions and 5 deletions

View File

@ -115,7 +115,7 @@ abstract class AbstractServer
/**
* Return a storage class
* @param string $obj The class required
* @return Storage\ClientInterface|Storage\ScopeInterface|Storage\SessionInterface
* @return Storage\ClientInterface|Storage\ScopeInterface|Storage\SessionInterface|Storage\AccessTokenInterface|Storage\AuthCodeInterface|Storage\RefreshTokenInterface
*/
public function getStorage($obj)
{

View File

@ -159,7 +159,7 @@ class AuthCodeGrant extends AbstractGrant
/**
* Complete the auth code grant
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
* @return array
*/
public function completeFlow()
{

View File

@ -49,7 +49,7 @@ class ClientCredentialsGrant extends AbstractGrant
/**
* Complete the client credentials grant
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
* @return array
*/
public function completeFlow()
{

View File

@ -18,7 +18,7 @@ interface GrantTypeInterface
{
/**
* Complete the grant flow
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
* @return array
*/
public function completeFlow();
}

View File

@ -73,7 +73,7 @@ class PasswordGrant extends AbstractGrant
/**
* Complete the password grant
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
* @return array
*/
public function completeFlow()
{