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

View File

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