summaryrefslogtreecommitdiffstats
path: root/lib/private/User/Database.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-03-17 09:36:06 +0100
committerJoas Schilling <coding@schilljs.com>2021-03-17 09:51:31 +0100
commit3379e69ecc092da6897f38a0be30e917a38f5439 (patch)
tree47a2a1e539de8d8d7fa50f6b2fb8d53a99aa9f67 /lib/private/User/Database.php
parent47e14c9a79c15be14e2d899a5b931f1d0cf845b5 (diff)
downloadnextcloud-server-3379e69ecc092da6897f38a0be30e917a38f5439.tar.gz
nextcloud-server-3379e69ecc092da6897f38a0be30e917a38f5439.zip
Fix parameter types in docs
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/User/Database.php')
-rw-r--r--lib/private/User/Database.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/User/Database.php b/lib/private/User/Database.php
index 0534d38fd47..6c04a1b900e 100644
--- a/lib/private/User/Database.php
+++ b/lib/private/User/Database.php
@@ -256,8 +256,8 @@ class Database extends ABackend implements
* Get a list of all display names and user ids.
*
* @param string $search
- * @param string|null $limit
- * @param string|null $offset
+ * @param int|null $limit
+ * @param int|null $offset
* @return array an array of all displayNames (value) and the corresponding uids (key)
*/
public function getDisplayNames($search = '', $limit = null, $offset = null) {