diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-11 18:05:28 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:08:14 +0100 |
commit | b653ad164b83afbc07d7a82d2e4461dace28ba6a (patch) | |
tree | e1923c2b5116f0f8a242491f949d56db63288e1a /lib/private/user/database.php | |
parent | f5bc680f9c725c0aea166f3fc3eee8e0bcf5427c (diff) | |
download | nextcloud-server-b653ad164b83afbc07d7a82d2e4461dace28ba6a.tar.gz nextcloud-server-b653ad164b83afbc07d7a82d2e4461dace28ba6a.zip |
Replace @returns with @return, in /lib
Diffstat (limited to 'lib/private/user/database.php')
-rw-r--r-- | lib/private/user/database.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/private/user/database.php b/lib/private/user/database.php index dec38464f98..d70ccd8ad43 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -59,7 +59,7 @@ class OC_User_Database extends OC_User_Backend { * @brief Create a new user * @param $uid The username of the user to create * @param $password The password of the new user - * @returns true/false + * @return true/false * * Creates a new user. Basic checking of username is done in OC_User * itself, not in its subclasses. @@ -80,7 +80,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief delete a user * @param $uid The username of the user to delete - * @returns true/false + * @return true/false * * Deletes a user */ @@ -100,7 +100,7 @@ class OC_User_Database extends OC_User_Backend { * @brief Set password * @param $uid The username * @param $password The new password - * @returns true/false + * @return true/false * * Change the password of a user */ @@ -121,7 +121,7 @@ class OC_User_Database extends OC_User_Backend { * @brief Set display name * @param $uid The username * @param $displayName The new display name - * @returns true/false + * @return true/false * * Change the display name of a user */ @@ -149,7 +149,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief Get a list of all display names - * @returns array with all displayNames (value) and the correspondig uids (key) + * @return array with all displayNames (value) and the correspondig uids (key) * * Get a list of all display names and user ids. */ @@ -171,7 +171,7 @@ class OC_User_Database extends OC_User_Backend { * @brief Check if the password is correct * @param $uid The username * @param $password The password - * @returns string + * @return string * * Check if the password is correct without logging in the user * returns the user id or false @@ -203,7 +203,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief Load an user in the cache * @param string $uid the username - * @returns boolean + * @return boolean */ private function loadUser($uid) { if (empty($this->cache[$uid])) { @@ -226,7 +226,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief Get a list of all users - * @returns array with all uids + * @return array with all uids * * Get a list of all users. */ |