Files
oauth2-server/src/Entities/Interfaces/ScopeEntityInterface.php
2016-01-12 22:59:33 +00:00

18 lines
354 B
PHP

<?php
namespace League\OAuth2\Server\Entities\Interfaces;
interface ScopeEntityInterface extends \JsonSerializable
{
/**
* Get the scope's identifier
* @return string
*/
public function getIdentifier();
/**
* Set the scope's identifier
* @param $identifier
*/
public function setIdentifier($identifier);
}