diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-06-27 21:58:49 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-06-27 21:58:49 +0200 |
commit | 717f91a4e884f6eccb9d7c4cbeadc99bae57252a (patch) | |
tree | 7e2bb21061ef0053d34ca49aa6869cc761b0c0c9 /lib/private/user/database.php | |
parent | dd0625faf32ed51cff762006280a02306f707b3a (diff) | |
parent | a793b98fd0736bbeda975f4ef9db0c0bffb7e470 (diff) | |
download | nextcloud-server-717f91a4e884f6eccb9d7c4cbeadc99bae57252a.tar.gz nextcloud-server-717f91a4e884f6eccb9d7c4cbeadc99bae57252a.zip |
Merge pull request #17214 from owncloud/fix-php-doc-user-interface
Fix PHPDoc + Indentation
Diffstat (limited to 'lib/private/user/database.php')
-rw-r--r-- | lib/private/user/database.php | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 0de062ba2ce..3cf73f939e5 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -143,10 +143,12 @@ class OC_User_Database extends OC_User_Backend implements \OCP\IUserBackend { } /** - * Get a list of all display names - * @return array an array of all displayNames (value) and the correspondig uids (key) - * * Get a list of all display names and user ids. + * + * @param string $search + * @param string|null $limit + * @param string|null $offset + * @return array an array of all displayNames (value) and the corresponding uids (key) */ public function getDisplayNames($search = '', $limit = null, $offset = null) { $parameters = []; @@ -224,9 +226,11 @@ class OC_User_Database extends OC_User_Backend implements \OCP\IUserBackend { /** * Get a list of all users - * @return array an array of all uids * - * Get a list of all users. + * @param string $search + * @param null|int $limit + * @param null|int $offset + * @return string[] an array of all uids */ public function getUsers($search = '', $limit = null, $offset = null) { $parameters = []; |