1 | <?php |
||
10 | class AccessTokenEntity implements AccessTokenEntityInterface |
||
11 | { |
||
12 | use TokenEntityTrait, EntityTrait, AccessTokenTrait; |
||
13 | |||
14 | /** |
||
15 | * AccessTokenEntity constructor. |
||
16 | * |
||
17 | * @param null|string $userIdentifier The identifier of the user. |
||
18 | * @param array $scopes The scopes to assign the user. |
||
19 | */ |
||
20 | public function __construct(?string $userIdentifier, array $scopes) |
||
28 | } |
||
29 |