Merge pull request #59381 from nextcloud/fix/clean-ldap-ocp-typing-33

[stable33] chore: Remove incorrect resource typing in ILDAPProvider
This commit is contained in:
Côme Chilliet 2026-04-07 16:27:26 +02:00 committed by GitHub
commit 3ced2fa051
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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);