mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
27 lines
672 B
PHP
27 lines
672 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\components\OAuth2\Repositories;
|
|
|
|
use api\components\OAuth2\Entities\AuthCodeEntity;
|
|
use League\OAuth2\Server\Entities\AuthCodeEntityInterface;
|
|
use League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface;
|
|
|
|
class AuthCodeRepository implements AuthCodeRepositoryInterface {
|
|
|
|
public function getNewAuthCode(): AuthCodeEntityInterface {
|
|
return new AuthCodeEntity();
|
|
}
|
|
|
|
public function persistNewAuthCode(AuthCodeEntityInterface $authCodeEntity): void {
|
|
}
|
|
|
|
public function revokeAuthCode($codeId): void {
|
|
}
|
|
|
|
public function isAuthCodeRevoked($codeId): bool {
|
|
return false;
|
|
}
|
|
|
|
}
|