Adds create method to AuthCodeInterface. Relates to #160.

This commit is contained in:
Dustin Wheeler 2014-05-29 19:27:45 -07:00
parent d40ee11ef5
commit c1269a97d6

View File

@ -26,6 +26,16 @@ interface AuthCodeInterface
*/
public function get($code);
/**
* Create an auth code.
* @param string $token The token ID
* @param integer $expireTime Token expire time
* @param integer $sessionId Session identifier
*
* @return void
*/
public function create($token, $expireTime, $sessionId);
/**
* Get the scopes for an access token
* @param \League\OAuth2\Server\Entity\AuthCodeEntity $token The auth code