The create method returns void.

This commit is contained in:
Ivan Enderlin 2014-12-09 14:36:46 +01:00
parent 0878897969
commit 986dc59627

View File

@ -35,10 +35,10 @@ interface AccessTokenInterface extends StorageInterface
/**
* Creates a new access token
* @param string $token The access token
* @param integer $expireTime The expire time expressed as a unix timestamp
* @param string|integer $sessionId The session ID
* @return \League\OAuth2\Server\Entity\AccessTokenEntity
* @param string $token The access token
* @param integer $expireTime The expire time expressed as a unix timestamp
* @param string|integer $sessionId The session ID
* @return void
*/
public function create($token, $expireTime, $sessionId);