Auth Ldap: Fix typo

This commit is contained in:
Benjamin Renard 2023-02-25 14:49:45 +01:00
parent 33fcd6a92c
commit 3d9decdafd

View file

@ -235,7 +235,7 @@ class Ldap extends Backend {
);
}
Log::debug('User "%s" found in LDAP directory (%s):\n%s', $username, $dn, vardump($info));
return new User($username, '\\EesyPHP\\Auth\\LDAP', $info);
return new User($username, '\\EesyPHP\\Auth\\Ldap', $info);
}
/**