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