diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-25 20:33:24 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-25 20:33:24 +0200 |
commit | 6c8caa1641732c57fe59483fc2cdd5bcd7bd0163 (patch) | |
tree | 57c69a5be00c4ae2c43bf2ce4094c3f700e1f285 /lib/public | |
parent | 89ebb8a6631eaa273d34864224986e4efb2c365d (diff) | |
download | nextcloud-server-6c8caa1641732c57fe59483fc2cdd5bcd7bd0163.tar.gz nextcloud-server-6c8caa1641732c57fe59483fc2cdd5bcd7bd0163.zip |
Remove deprecated \OCP\User::getUsers
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/User.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/public/User.php b/lib/public/User.php index 14fdd6fb1ab..6e4e1d52a72 100644 --- a/lib/public/User.php +++ b/lib/public/User.php @@ -58,19 +58,6 @@ class User { } /** - * Get a list of all users - * @param string $search search pattern - * @param int|null $limit - * @param int|null $offset - * @return array an array of all uids - * @deprecated 8.1.0 use method search() of \OCP\IUserManager - \OC::$server->getUserManager() - * @since 5.0.0 - */ - public static function getUsers( $search = '', $limit = null, $offset = null ) { - return \OC_User::getUsers( $search, $limit, $offset ); - } - - /** * Get the user display name of the user currently logged in. * @param string|null $user user id or null for current user * @return string display name |