oauth2-server/tests/Stubs/ScopeEntity.php
2016-04-09 15:25:45 +01:00

17 lines
311 B
PHP

<?php
namespace LeagueTests\Stubs;
use League\OAuth2\Server\Entities\ScopeEntityInterface;
use League\OAuth2\Server\Entities\Traits\EntityTrait;
class ScopeEntity implements ScopeEntityInterface
{
use EntityTrait;
public function jsonSerialize()
{
return $this->getIdentifier();
}
}