diff options
author | Robin Appelman <robin@icewind.nl> | 2023-05-12 15:25:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 15:25:32 +0200 |
commit | 1f4dd62b4e7455b9baa2a6b49cd0a74c21221fd7 (patch) | |
tree | 65ad281847d72cb3499e35b3710d394cde53666a /lib/public/GroupInterface.php | |
parent | b83432f92fa62229d7b0534462679202bf14567e (diff) | |
parent | 4a864878593446133e7f135047ee7a7772561010 (diff) | |
download | nextcloud-server-1f4dd62b4e7455b9baa2a6b49cd0a74c21221fd7.tar.gz nextcloud-server-1f4dd62b4e7455b9baa2a6b49cd0a74c21221fd7.zip |
Merge pull request #36592 from nextcloud/groupmanager-search-typing
fix default values and type hints for GroupManager::search
Diffstat (limited to 'lib/public/GroupInterface.php')
-rw-r--r-- | lib/public/GroupInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/GroupInterface.php b/lib/public/GroupInterface.php index 56863100c05..a18d38df002 100644 --- a/lib/public/GroupInterface.php +++ b/lib/public/GroupInterface.php @@ -95,7 +95,7 @@ interface GroupInterface { * * Returns a list with all groups */ - public function getGroups($search = '', $limit = -1, $offset = 0); + public function getGroups(string $search = '', int $limit = -1, int $offset = 0); /** * check if a group exists |