| 1 | <?php |
||
| 21 | trait UserTrait |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @see \Symfony\Component\Security\Core\User\UserInterface |
||
| 25 | * |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | 1 | public function getPassword() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @see \Symfony\Component\Security\Core\User\UserInterface |
||
| 35 | * |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | 1 | public function getSalt() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @see \Symfony\Component\Security\Core\User\UserInterface |
||
| 45 | * |
||
| 46 | * {@inheritdoc} |
||
| 47 | */ |
||
| 48 | 1 | public function eraseCredentials() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * @see \Symfony\Component\Security\Core\User\AdvancedUserInterface |
||
| 54 | * |
||
| 55 | * {@inheritdoc} |
||
| 56 | */ |
||
| 57 | 1 | public function isEnabled() |
|
| 61 | |||
| 62 | /** |
||
| 63 | * @see \Symfony\Component\Security\Core\User\AdvancedUserInterface |
||
| 64 | * |
||
| 65 | * {@inheritdoc} |
||
| 66 | */ |
||
| 67 | 1 | public function isAccountNonExpired() |
|
| 71 | |||
| 72 | /** |
||
| 73 | * @see \Symfony\Component\Security\Core\User\AdvancedUserInterface |
||
| 74 | * |
||
| 75 | * {@inheritdoc} |
||
| 76 | */ |
||
| 77 | 1 | public function isCredentialsNonExpired() |
|
| 81 | |||
| 82 | /** |
||
| 83 | * @see \Symfony\Component\Security\Core\User\AdvancedUserInterface |
||
| 84 | * |
||
| 85 | * {@inheritdoc} |
||
| 86 | */ |
||
| 87 | 1 | public function isAccountNonLocked() |
|
| 91 | } |
||
| 92 |