Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/user.php')
-rw-r--r--lib/public/user.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/user.php b/lib/public/user.php
index acc0e3b737b..7bac938b838 100644
--- a/lib/public/user.php
+++ b/lib/public/user.php
@@ -46,8 +46,8 @@ class User {
/**
* Get a list of all users
* @param string search pattern
- * @param int limit
- * @param int offset
+ * @param integer $limit
+ * @param integer $offset
* @return array with all uids
*/
public static function getUsers( $search = '', $limit = null, $offset = null ) {
@@ -101,9 +101,9 @@ class User {
/**
* Check if the password is correct
- * @param string The username
- * @param string The password
- * @return mixed username on success, false otherwise
+ * @param string $uid The username
+ * @param string $password The password
+ * @return string|false username on success, false otherwise
*
* Check if the password is correct without logging in the user
*/