mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
21 lines
371 B
PHP
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);
|
|
}
|