summaryrefslogtreecommitdiffstats
path: root/lib/private/user/backend.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/user/backend.php')
-rw-r--r--lib/private/user/backend.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/lib/private/user/backend.php b/lib/private/user/backend.php
index 0775bc05588..10bf3e28085 100644
--- a/lib/private/user/backend.php
+++ b/lib/private/user/backend.php
@@ -134,11 +134,13 @@ abstract class OC_User_Backend implements OC_User_Interface {
}
/**
- * 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) {
return array();
}
@@ -171,10 +173,12 @@ abstract class OC_User_Backend implements OC_User_Interface {
}
/**
- * 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) {
$displayNames = array();