mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
New entities, traits and interfaces
This commit is contained in:
16
src/Entities/RefreshTokenEntity.php
Normal file
16
src/Entities/RefreshTokenEntity.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace League\OAuth2\Server\Entities;
|
||||
|
||||
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
||||
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
||||
use League\OAuth2\Server\Entities\Traits\RefreshTokenTrait;
|
||||
use League\OAuth2\Server\Entities\Traits\TokenEntityTrait;
|
||||
|
||||
/**
|
||||
* Class RefreshTokenEntity
|
||||
* @package League\OAuth2\Server
|
||||
*/
|
||||
class RefreshTokenEntity implements RefreshTokenEntityInterface
|
||||
{
|
||||
use EntityTrait, TokenEntityTrait, RefreshTokenTrait;
|
||||
}
|
||||
Reference in New Issue
Block a user