diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-06-27 20:35:47 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-06-27 20:35:47 +0200 |
commit | af01958f3e3c36d850f056b4598b85336878ee2f (patch) | |
tree | 0cedb72844c8a084b5f9278f6adae155e496b518 /lib/private/user/interface.php | |
parent | d1f0ff372e8c05ced760d4e21060e8d8db9c1963 (diff) | |
download | nextcloud-server-af01958f3e3c36d850f056b4598b85336878ee2f.tar.gz nextcloud-server-af01958f3e3c36d850f056b4598b85336878ee2f.zip |
Add missing annotations for parameters
Diffstat (limited to 'lib/private/user/interface.php')
-rw-r--r-- | lib/private/user/interface.php | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/lib/private/user/interface.php b/lib/private/user/interface.php index abaca9bad7c..caf328a9fc8 100644 --- a/lib/private/user/interface.php +++ b/lib/private/user/interface.php @@ -45,11 +45,13 @@ interface OC_User_Interface { public function deleteUser($uid); /** - * Get a list of all users - * @return array an array of all uids - * - * Get a list of all users. - */ + * 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); /** @@ -67,10 +69,12 @@ interface OC_User_Interface { public function getDisplayName($uid); /** - * Get a list of all display names - * @return array an array of all displayNames (value) and the corresponding 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); |