mirror of
https://github.com/elyby/accounts.git
synced 2025-05-31 14:11:46 +05:30
17 lines
454 B
PHP
17 lines
454 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\components\OAuth2\Entities;
|
|
|
|
use League\OAuth2\Server\Entities\DeviceCodeEntityInterface;
|
|
use League\OAuth2\Server\Entities\Traits\DeviceCodeTrait;
|
|
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
|
use League\OAuth2\Server\Entities\Traits\TokenEntityTrait;
|
|
|
|
final class DeviceCodeEntity implements DeviceCodeEntityInterface {
|
|
use EntityTrait;
|
|
use TokenEntityTrait;
|
|
use DeviceCodeTrait;
|
|
|
|
}
|