| 1 | <?php | ||
| 20 | class AnonymousUser implements UserInterface | ||
| 21 | { | ||
| 22 | public const USERNAME = 'anonymous'; | ||
| 23 | |||
| 24 | /** | ||
| 25 |      * {@inheritdoc} | ||
| 26 | */ | ||
| 27 | public function getRoles(): array | ||
| 31 | |||
| 32 | /** | ||
| 33 |      * {@inheritdoc} | ||
| 34 | */ | ||
| 35 | public function getPassword(): ?string | ||
| 39 | |||
| 40 | /** | ||
| 41 |      * {@inheritdoc} | ||
| 42 | */ | ||
| 43 | public function getSalt(): ?string | ||
| 47 | |||
| 48 | /** | ||
| 49 |      * {@inheritdoc} | ||
| 50 | */ | ||
| 51 | public function getUsername(): string | ||
| 55 | |||
| 56 | /** | ||
| 57 |      * {@inheritdoc} | ||
| 58 | */ | ||
| 59 | public function eraseCredentials(): void | ||
| 62 | } | ||
| 63 |