mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
14 lines
380 B
PHP
14 lines
380 B
PHP
<?php
|
|
|
|
namespace LeagueTests\Stubs;
|
|
|
|
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, TokenEntityTrait, AuthCodeTrait;
|
|
}
|