mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-24 00:29:35 +00:00
13 lines
352 B
PHP
13 lines
352 B
PHP
<?php
|
|
namespace Api\V8\OAuth2\Entity;
|
|
|
|
use League\OAuth2\Server\Entities\RefreshTokenEntityInterface;
|
|
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
|
use League\OAuth2\Server\Entities\Traits\RefreshTokenTrait;
|
|
|
|
#[\AllowDynamicProperties]
|
|
class RefreshTokenEntity implements RefreshTokenEntityInterface
|
|
{
|
|
use RefreshTokenTrait, EntityTrait;
|
|
}
|