mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-26 23:10:17 +05:30
remove unused mac token interface
This commit is contained in:
parent
9533595394
commit
4d2ccac8ed
@ -1,36 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* OAuth 2.0 MAC Token Interface.
|
|
||||||
*
|
|
||||||
* @author Alex Bilbie <hello@alexbilbie.com>
|
|
||||||
* @copyright Copyright (c) Alex Bilbie
|
|
||||||
* @license http://mit-license.org/
|
|
||||||
*
|
|
||||||
* @link https://github.com/thephpleague/oauth2-server
|
|
||||||
*/
|
|
||||||
namespace League\OAuth2\Server\Storage;
|
|
||||||
|
|
||||||
use League\OAuth2\Server\Repositories\RepositoryInterface;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* MacTokenInterface.
|
|
||||||
*/
|
|
||||||
interface MacTokenInterface extends RepositoryInterface
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Create a MAC key linked to an access token.
|
|
||||||
*
|
|
||||||
* @param string $macKey
|
|
||||||
* @param string $accessToken
|
|
||||||
*/
|
|
||||||
public function persistMacTokenEntity($macKey, $accessToken);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a MAC key by access token.
|
|
||||||
*
|
|
||||||
* @param string $accessToken
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getMacKeyByAccessTokenString($accessToken);
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user