From 3d9decdafd2dcc30a7a5b10f66254fcdaf1ec791 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Sat, 25 Feb 2023 14:49:45 +0100 Subject: [PATCH] Auth Ldap: Fix typo --- src/Auth/Ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth/Ldap.php b/src/Auth/Ldap.php index 2480763..581f33f 100644 --- a/src/Auth/Ldap.php +++ b/src/Auth/Ldap.php @@ -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); } /**