]> source.dussan.org Git - nextcloud-server.git/commitdiff
Update version number in since and deprecated annotations
authorCôme Chilliet <come.chilliet@nextcloud.com>
Thu, 27 Apr 2023 10:04:32 +0000 (12:04 +0200)
committerCôme Chilliet <come.chilliet@nextcloud.com>
Thu, 27 Apr 2023 10:04:32 +0000 (12:04 +0200)
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
lib/private/Group/Group.php
lib/private/User/Manager.php
lib/public/Group/Backend/ISearchableGroupBackend.php
lib/public/GroupInterface.php

index c72a7826fd04d4bb5b7f9565b82b848b7328a023..7f04e45de80b3bf972b725c5e7d39c9a13e249eb 100644 (file)
@@ -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);
index e736a1981088b3dfa06f4055af8fa1f1b41081bd..60059d5baddbec79a8a42da6183b411cf62774f8 100644 (file)
@@ -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 = [];
index e5861d2814c2e87aaf47bf110dfc338e878aafd5..20753822258e4bc1a726caff388b2d7f0603799b 100644 (file)
@@ -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;
 }
index 726921920af0041c314c26143be5a37686d4ea2e..56863100c05041b359a7f2369d20c7bc0d10eecc 100644 (file)
@@ -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);
 }