| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | trait UserTrait |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @see \Symfony\Component\Security\Core\User\UserInterface |
||
| 25 | * |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | 1 | public function getPassword() |
|
| 29 | { |
||
| 30 | 1 | return null; |
|
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @see \Symfony\Component\Security\Core\User\UserInterface |
||
| 35 | * |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | 1 | public function getSalt() |
|
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @see \Symfony\Component\Security\Core\User\UserInterface |
||
| 45 | * |
||
| 46 | * {@inheritdoc} |
||
| 47 | */ |
||
| 48 | 1 | public function eraseCredentials() |
|
| 50 | 1 | } |
|
| 51 | } |
||
| 52 |