summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-04-27 12:04:32 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-04-27 12:04:32 +0200
commit346344c15371597ec825059abdf7564da9334b7e (patch)
treee6a4b3c6f88d156ac42b822b2fc83f5b64520fdd /lib/public
parentb6c17c6ce76080df0e291f60a85c0e42afab8f39 (diff)
downloadnextcloud-server-346344c15371597ec825059abdf7564da9334b7e.tar.gz
nextcloud-server-346344c15371597ec825059abdf7564da9334b7e.zip
Update version number in since and deprecated annotations
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/Group/Backend/ISearchableGroupBackend.php4
-rw-r--r--lib/public/GroupInterface.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/Group/Backend/ISearchableGroupBackend.php b/lib/public/Group/Backend/ISearchableGroupBackend.php
index e5861d2814c..20753822258 100644
--- a/lib/public/Group/Backend/ISearchableGroupBackend.php
+++ b/lib/public/Group/Backend/ISearchableGroupBackend.php
@@ -26,7 +26,7 @@ namespace OCP\Group\Backend;
use OCP\IUser;
/**
- * @since 26.0.0
+ * @since 27.0.0
*/
interface ISearchableGroupBackend {
/**
@@ -45,7 +45,7 @@ interface ISearchableGroupBackend {
* @param int $limit The limit of results
* @param int $offset The offset of the results
* @return array<string,IUser> Users indexed by uid
- * @since 26.0.0
+ * @since 27.0.0
*/
public function searchInGroup(string $gid, string $search = '', int $limit = -1, int $offset = 0): array;
}
diff --git a/lib/public/GroupInterface.php b/lib/public/GroupInterface.php
index 726921920af..56863100c05 100644
--- a/lib/public/GroupInterface.php
+++ b/lib/public/GroupInterface.php
@@ -114,7 +114,7 @@ interface GroupInterface {
* @param int $offset
* @return array<int,string> an array of user ids
* @since 4.5.0
- * @deprecated 26.0.0 Use searchInGroup instead, for performance reasons
+ * @deprecated 27.0.0 Use searchInGroup instead, for performance reasons
*/
public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0);
}