From 710c65aa422f6e6fa487b6338fd59c05adb5c93c Mon Sep 17 00:00:00 2001 From: Michael Gooden Date: Fri, 1 Mar 2013 09:39:21 +0200 Subject: [PATCH] Fix typo in SessionInterface::validateAuthCode. --- src/OAuth2/Storage/SessionInterface.php | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/OAuth2/Storage/SessionInterface.php b/src/OAuth2/Storage/SessionInterface.php index ced7f555..923b521d 100644 --- a/src/OAuth2/Storage/SessionInterface.php +++ b/src/OAuth2/Storage/SessionInterface.php @@ -105,25 +105,6 @@ interface SessionInterface * redirect_uri = $redirectUri AND auth_code = $authCode * * - * Response: - * - * - * Array - * ( - * [id] => (int) The session ID - * [client_id] => (string) The client ID - * [redirect_uri] => (string) The redirect URI - * [owner_type] => (string) The session owner type - * [owner_id] => (string) The session owner's ID - * [auth_code] => (string) The authorisation code - * [stage] => (string) The session's stage - * [first_requested] => (int) Unix timestamp of the time the session was - * first generated - * [last_updated] => (int) Unix timestamp of the time the session was - * last updated - * ) - * - * * @param string $clientId The client ID * @param string $redirectUri The redirect URI * @param string $authCode The authorisation code