mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
16 lines
359 B
PHP
16 lines
359 B
PHP
<?php
|
|
|
|
namespace League\OAuth2\Server\Entities;
|
|
|
|
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
|
|
use League\OAuth2\Server\Entities\Traits\ClientEntityTrait;
|
|
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
|
|
|
/**
|
|
* Class ClientEntity.
|
|
*/
|
|
class ClientEntity implements ClientEntityInterface
|
|
{
|
|
use EntityTrait, ClientEntityTrait;
|
|
}
|