Skip to content

Commit 346344c

Browse files
committed
Update version number in since and deprecated annotations
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 parent b6c17c6 commit 346344c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/private/Group/Group.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public function countDisabled() {
316316
* @param int $limit
317317
* @param int $offset
318318
* @return IUser[]
319-
* @deprecated 26.0.0 Use searchUsers instead (same implementation)
319+
* @deprecated 27.0.0 Use searchUsers instead (same implementation)
320320
*/
321321
public function searchDisplayName($search, $limit = null, $offset = null) {
322322
return $this->searchUsers($search, $limit, $offset);

lib/private/User/Manager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ public function checkPasswordNoLogging($loginName, $password) {
299299
* @param int $limit
300300
* @param int $offset
301301
* @return IUser[]
302-
* @deprecated since 26.0.0, use searchDisplayName instead
302+
* @deprecated since 27.0.0, use searchDisplayName instead
303303
*/
304304
public function search($pattern, $limit = null, $offset = null) {
305305
$users = [];

lib/public/Group/Backend/ISearchableGroupBackend.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
use OCP\IUser;
2727

2828
/**
29-
* @since 26.0.0
29+
* @since 27.0.0
3030
*/
3131
interface ISearchableGroupBackend {
3232
/**
@@ -45,7 +45,7 @@ interface ISearchableGroupBackend {
4545
* @param int $limit The limit of results
4646
* @param int $offset The offset of the results
4747
* @return array<string,IUser> Users indexed by uid
48-
* @since 26.0.0
48+
* @since 27.0.0
4949
*/
5050
public function searchInGroup(string $gid, string $search = '', int $limit = -1, int $offset = 0): array;
5151
}

lib/public/GroupInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function groupExists($gid);
114114
* @param int $offset
115115
* @return array<int,string> an array of user ids
116116
* @since 4.5.0
117-
* @deprecated 26.0.0 Use searchInGroup instead, for performance reasons
117+
* @deprecated 27.0.0 Use searchInGroup instead, for performance reasons
118118
*/
119119
public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0);
120120
}

0 commit comments

Comments
 (0)