Added missing details (return values on failure) to methods of SessionInterface

This commit is contained in:
lapause 2013-03-20 16:05:48 +01:00 committed by Alex Bilbie
parent 3a6468897f
commit 18e1bb33de

View File

@ -137,8 +137,8 @@ interface SessionInterface
* )
* </code>
*
* @param [type] $accessToken [description]
* @return [type] [description]
* @param string $accessToken The access token
* @return bool|array Returns false if the validation fails, array on success
*/
public function validateAccessToken($accessToken);
@ -161,7 +161,7 @@ interface SessionInterface
* Validate a refresh token
* @param string $refreshToken The refresh token
* @param string $clientId The client ID
* @return int The session ID
* @return bool|int The session ID, or false on failure
*/
public function validateRefreshToken($refreshToken, $clientId);