Removed unnecessary methods

This commit is contained in:
Alex Bilbie 2013-05-05 18:22:03 +01:00
parent d0abd8c295
commit 38f6be2aa0
2 changed files with 0 additions and 34 deletions

View File

@ -63,16 +63,6 @@ class Session implements SessionInterface
$stmt->execute();
}
/**
* Remove an associated redirect URI
* @param int $sessionId The session ID
* @return void
*/
public function removeRedirectUri($sessionId)
{
throw new \Exception('Not implemented - ' . debug_backtrace()[0]['function']);
}
/**
* Associate an access token with a session
* @param int $sessionId The session ID
@ -127,16 +117,6 @@ class Session implements SessionInterface
$stmt->execute();
}
/**
* Remove an associated refresh token from a session
* @param int $sessionId The session ID
* @return void
*/
public function removeRefreshToken($sessionId)
{
throw new \Exception('Not implemented - ' . debug_backtrace()[0]['function']);
}
/**
* Assocate an authorization code with a session
* @param int $sessionId The session ID

View File

@ -39,13 +39,6 @@ interface SessionInterface
*/
public function associateRedirectUri($sessionId, $redirectUri);
/**
* Remove an associated redirect URI
* @param int $sessionId The session ID
* @return void
*/
public function removeRedirectUri($sessionId);
/**
* Associate an access token with a session
* @param int $sessionId The session ID
@ -70,13 +63,6 @@ interface SessionInterface
*/
public function associateRefreshToken($accessTokenId, $refreshToken);
/**
* Remove an associated refresh token from a session
* @param int $sessionId The session ID
* @return void
*/
public function removeRefreshToken($sessionId);
/**
* Assocate an authorization code with a session
* @param int $sessionId The session ID