oauth2-server/src/Entities/ScopeEntity.php

15 lines
307 B
PHP
Raw Normal View History

2015-04-05 18:33:25 +05:30
<?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;
}