Merge pull request #70 from gstjohn/master

Fix to docblocks
This commit is contained in:
Alex Bilbie 2013-06-08 04:28:34 -07:00
commit 6e045afa26

View File

@ -74,7 +74,7 @@ interface SessionInterface
* @param int $sessionId The session ID * @param int $sessionId The session ID
* @param string $accessToken The access token * @param string $accessToken The access token
* @param int $expireTime Unix timestamp of the access token expiry time * @param int $expireTime Unix timestamp of the access token expiry time
* @return void * @return int The access token ID
*/ */
public function associateAccessToken($sessionId, $accessToken, $expireTime); public function associateAccessToken($sessionId, $accessToken, $expireTime);
@ -315,7 +315,8 @@ interface SessionInterface
* <code> * <code>
* array ( * array (
* array( * array(
* 'key' => (string), * 'id' => (int),
* 'scope' => (string),
* 'name' => (string), * 'name' => (string),
* 'description' => (string) * 'description' => (string)
* ), * ),