Fixing 'TypeError' in LdapUser::getSalt()

Return value of Symfony\Component\Ldap\Security\LdapUser::getSalt() must be of the type string or null, none returned
This commit is contained in:
Ryan Linnit 2019-10-02 20:38:58 +01:00 committed by GitHub
parent 67fe198a8e
commit 28e30b132b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ class LdapUser implements UserInterface, EquatableInterface
*/
public function getSalt(): ?string
{
return null;
}
/**