1 | <?php |
||
18 | final class EmailVerified implements Claim |
||
19 | { |
||
20 | private const CLAIM_NAME = 'email_verified'; |
||
21 | |||
22 | public function name(): string |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function isAvailableForUserAccount(UserAccount $userAccount, ?string $claimLocale): bool |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function getForUserAccount(UserAccount $userAccount, ?string $claimLocale) |
||
42 | } |
||
43 |