add missing return type in User class

This commit is contained in:
Tobias Schultze 2019-06-24 01:51:21 +01:00
parent 18793b7ca7
commit 7857f2fe7b
1 changed files with 2 additions and 1 deletions

View File

@ -67,8 +67,9 @@ final class User implements UserInterface, EquatableInterface
/**
* {@inheritdoc}
*/
public function getSalt()
public function getSalt(): ?string
{
return null;
}
/**