chore: Remove incorrect resource typing in ILDAPProvider

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2026-04-01 14:42:28 +02:00 committed by backportbot[bot]
parent ab7f58bde8
commit 8ea45920be

View file

@ -56,7 +56,7 @@ interface ILDAPProvider {
/**
* 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 @@ interface ILDAPProvider {
/**
* 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);