mirror of
https://github.com/elyby/accounts.git
synced 2024-10-31 07:53:02 +05:30
19 lines
461 B
PHP
19 lines
461 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\components\OAuth2\Entities;
|
|
|
|
use League\OAuth2\Server\Entities\AuthCodeEntityInterface;
|
|
use League\OAuth2\Server\Entities\Traits\AuthCodeTrait;
|
|
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
|
use League\OAuth2\Server\Entities\Traits\TokenEntityTrait;
|
|
|
|
class AuthCodeEntity implements AuthCodeEntityInterface {
|
|
use EntityTrait;
|
|
use AuthCodeTrait;
|
|
use TokenEntityTrait;
|
|
|
|
// TODO: constructor
|
|
|
|
}
|