diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-02 17:10:31 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-04-27 12:00:45 +0200 |
commit | b6c17c6ce76080df0e291f60a85c0e42afab8f39 (patch) | |
tree | 3b26ccfc21ffe384a0c972d37a1ae2f12c7e7da5 /apps/user_ldap/lib/Group_Proxy.php | |
parent | 6385a5af36957cac4e1beed531d941129eb3a5a0 (diff) | |
download | nextcloud-server-b6c17c6ce76080df0e291f60a85c0e42afab8f39.tar.gz nextcloud-server-b6c17c6ce76080df0e291f60a85c0e42afab8f39.zip |
Clear up return types
usersInGroup index by int for BC, searchInGroup index by uid (string).
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/user_ldap/lib/Group_Proxy.php')
-rw-r--r-- | apps/user_ldap/lib/Group_Proxy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Group_Proxy.php b/apps/user_ldap/lib/Group_Proxy.php index 74655840f47..5f8d0562fd9 100644 --- a/apps/user_ldap/lib/Group_Proxy.php +++ b/apps/user_ldap/lib/Group_Proxy.php @@ -171,7 +171,7 @@ class Group_Proxy extends Proxy implements \OCP\GroupInterface, IGroupLDAP, IGet /** * get a list of all users in a group * - * @return string[] with user ids + * @return array<int,string> user ids */ public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { $this->setup(); |