thephpleague /
oauth2-server
| 1 | <?php |
||
| 2 | |||
| 3 | /** |
||
| 4 | * @author Alex Bilbie <[email protected]> |
||
| 5 | * @copyright Copyright (c) Alex Bilbie |
||
| 6 | * @license http://mit-license.org/ |
||
| 7 | * |
||
| 8 | * @link https://github.com/thephpleague/oauth2-server |
||
| 9 | */ |
||
| 10 | |||
| 11 | declare(strict_types=1); |
||
| 12 | |||
| 13 | namespace League\OAuth2\Server\Entities; |
||
| 14 | |||
| 15 | use JsonSerializable; |
||
| 16 | |||
| 17 | interface ScopeEntityInterface extends JsonSerializable |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Get the scope's identifier. |
||
| 21 | * |
||
| 22 | * @return non-empty-string |
||
|
0 ignored issues
–
show
Documentation
Bug
introduced
by
Loading history...
|
|||
| 23 | */ |
||
| 24 | public function getIdentifier(): string; |
||
| 25 | } |
||
| 26 |