mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 09:47:46 +05:30
15 lines
307 B
PHP
15 lines
307 B
PHP
|
<?php
|
||
|
namespace League\OAuth2\Server\Entities;
|
||
|
|
||
|
use League\OAuth2\Server\Entities\Interfaces\ScopeEntityInterface;
|
||
|
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
||
|
|
||
|
/**
|
||
|
* Class ScopeEntity
|
||
|
* @package League\OAuth2\Server
|
||
|
*/
|
||
|
class ScopeEntity implements ScopeEntityInterface
|
||
|
{
|
||
|
use EntityTrait;
|
||
|
}
|