Files
oauth2-server/src/Entities/Interfaces/ScopeEntityInterface.php
2016-02-19 18:09:39 -05:00

21 lines
371 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);
}