From ee9789ac48291f9ef4d049c09886e1536e492eff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Wed, 1 Apr 2026 14:42:28 +0200 Subject: [PATCH] chore: Remove incorrect resource typing in ILDAPProvider MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- lib/public/LDAP/ILDAPProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/public/LDAP/ILDAPProvider.php b/lib/public/LDAP/ILDAPProvider.php index 7e1f27eb36842..e25428450626d 100644 --- a/lib/public/LDAP/ILDAPProvider.php +++ b/lib/public/LDAP/ILDAPProvider.php @@ -56,7 +56,7 @@ public function sanitizeDN($dn); /** * Return a new LDAP connection resource for the specified user. * @param string $uid user id - * @return \LDAP\Connection|resource + * @return \LDAP\Connection * @since 11.0.0 */ public function getLDAPConnection($uid); @@ -64,7 +64,7 @@ public function getLDAPConnection($uid); /** * Return a new LDAP connection resource for the specified group. * @param string $gid group id - * @return \LDAP\Connection|resource + * @return \LDAP\Connection * @since 13.0.0 */ public function getGroupLDAPConnection($gid);