From 46f0e6c84dd3a673fa803427fa76f4ff6b797a8c Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Wed, 8 May 2013 17:04:01 -0700 Subject: [PATCH] Updated docblocks --- src/League/OAuth2/Server/Grant/GrantTypeInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/League/OAuth2/Server/Grant/GrantTypeInterface.php b/src/League/OAuth2/Server/Grant/GrantTypeInterface.php index 5f0c4a77..2399c521 100644 --- a/src/League/OAuth2/Server/Grant/GrantTypeInterface.php +++ b/src/League/OAuth2/Server/Grant/GrantTypeInterface.php @@ -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();