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 | interface UserEntityInterface |
||
16 | { |
||
17 | /** |
||
18 | * Return the user's identifier. |
||
19 | * |
||
20 | * @return non-empty-string |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
21 | */ |
||
22 | public function getIdentifier(): string; |
||
23 | } |
||
24 |