diff options
-rw-r--r-- | lib/private/Group/Group.php | 2 | ||||
-rw-r--r-- | lib/private/User/Manager.php | 2 | ||||
-rw-r--r-- | lib/public/Group/Backend/ISearchableGroupBackend.php | 4 | ||||
-rw-r--r-- | lib/public/GroupInterface.php | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/lib/private/Group/Group.php b/lib/private/Group/Group.php index c72a7826fd0..7f04e45de80 100644 --- a/lib/private/Group/Group.php +++ b/lib/private/Group/Group.php @@ -316,7 +316,7 @@ class Group implements IGroup { * @param int $limit * @param int $offset * @return IUser[] - * @deprecated 26.0.0 Use searchUsers instead (same implementation) + * @deprecated 27.0.0 Use searchUsers instead (same implementation) */ public function searchDisplayName($search, $limit = null, $offset = null) { return $this->searchUsers($search, $limit, $offset); diff --git a/lib/private/User/Manager.php b/lib/private/User/Manager.php index e736a198108..60059d5badd 100644 --- a/lib/private/User/Manager.php +++ b/lib/private/User/Manager.php @@ -299,7 +299,7 @@ class Manager extends PublicEmitter implements IUserManager { * @param int $limit * @param int $offset * @return IUser[] - * @deprecated since 26.0.0, use searchDisplayName instead + * @deprecated since 27.0.0, use searchDisplayName instead */ public function search($pattern, $limit = null, $offset = null) { $users = []; 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); } |