diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-17 09:36:06 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-17 09:51:31 +0100 |
commit | 3379e69ecc092da6897f38a0be30e917a38f5439 (patch) | |
tree | 47a2a1e539de8d8d7fa50f6b2fb8d53a99aa9f67 /lib/public | |
parent | 47e14c9a79c15be14e2d899a5b931f1d0cf845b5 (diff) | |
download | nextcloud-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/public')
-rw-r--r-- | lib/public/UserInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/UserInterface.php b/lib/public/UserInterface.php index 0479041e8de..42a18cca103 100644 --- a/lib/public/UserInterface.php +++ b/lib/public/UserInterface.php @@ -92,8 +92,8 @@ interface UserInterface { * 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) * @since 4.5.0 */ |