1<?php
2/**
3 * @author      Alex Bilbie <hello@alexbilbie.com>
4 * @copyright   Copyright (c) Alex Bilbie
5 * @license     http://mit-license.org/
6 *
7 * @link        https://github.com/thephpleague/oauth2-server
8 */
9
10namespace League\OAuth2\Server\Entities;
11
12use JsonSerializable;
13
14interface ScopeEntityInterface extends JsonSerializable
15{
16    /**
17     * Get the scope's identifier.
18     *
19     * @return string
20     */
21    public function getIdentifier();
22}
23