Updated docblocks

This commit is contained in:
Alex Bilbie 2013-05-08 17:04:01 -07:00
parent 1dd768545a
commit 46f0e6c84d

View File

@ -29,13 +29,13 @@ interface GrantTypeInterface
public function __construct(Authorization $authServer);
/**
* Returns the grant identifier (used to validate grant_type in OAuth2\AuthServer\issueAccessToken())
* Returns the grant identifier (used to validate grant_type in League\OAuth2\Server\Authorization::issueAccessToken())
* @return string
*/
public function getIdentifier();
/**
* Returns the response type (used to validate response_type in OAuth2\AuthServer\checkAuthoriseParams())
* Returns the response type (used to validate response_type in League\OAuth2\Server\Grant\AuthCode::checkAuthoriseParams())
* @return null|string
*/
public function getResponseType();