Browse Source

Adapt interface to new search signature

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
tags/v26.0.0beta1
Côme Chilliet 1 year ago
parent
commit
e872f461f2
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/user_ldap/lib/ILDAPWrapper.php

+ 1
- 1
apps/user_ldap/lib/ILDAPWrapper.php View File

@@ -154,7 +154,7 @@ interface ILDAPWrapper {
* @param int $limit optional, limits the result entries
* @return resource|\LDAP\Result|false an LDAP search result resource, false on error
*/
public function search($link, $baseDN, $filter, $attr, $attrsOnly = 0, $limit = 0);
public function search($link, string $baseDN, string $filter, array $attr, int $attrsOnly = 0, int $limit = 0, int $pageSize = 0, string $cookie = '');

/**
* Replace the value of a userPassword by $password

Loading…
Cancel
Save