diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-11 18:13:51 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:08:14 +0100 |
commit | b5bc37d2e40aba0ab8d3e72e7f7075352839096d (patch) | |
tree | 75763a2a8452bd1ab6486fed74994cb207310ece /lib/private/user | |
parent | b653ad164b83afbc07d7a82d2e4461dace28ba6a (diff) | |
download | nextcloud-server-b5bc37d2e40aba0ab8d3e72e7f7075352839096d.tar.gz nextcloud-server-b5bc37d2e40aba0ab8d3e72e7f7075352839096d.zip |
Fix @return array PHPDocs, in /lib
Diffstat (limited to 'lib/private/user')
-rw-r--r-- | lib/private/user/backend.php | 4 | ||||
-rw-r--r-- | lib/private/user/database.php | 4 | ||||
-rw-r--r-- | lib/private/user/interface.php | 4 | ||||
-rw-r--r-- | lib/private/user/manager.php | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/lib/private/user/backend.php b/lib/private/user/backend.php index 3994c1bb8ff..8d2f0e935de 100644 --- a/lib/private/user/backend.php +++ b/lib/private/user/backend.php @@ -103,7 +103,7 @@ abstract class OC_User_Backend implements OC_User_Interface { /** * @brief Get a list of all users - * @return array with all uids + * @return array an array of all uids * * Get a list of all users. */ @@ -140,7 +140,7 @@ abstract class OC_User_Backend implements OC_User_Interface { /** * @brief Get a list of all display names - * @return array with all displayNames (value) and the corresponding uids (key) + * @return array an array of all displayNames (value) and the corresponding uids (key) * * Get a list of all display names and user ids. */ diff --git a/lib/private/user/database.php b/lib/private/user/database.php index d70ccd8ad43..d54b0567a18 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -149,7 +149,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief Get a list of all display names - * @return array with all displayNames (value) and the correspondig uids (key) + * @return array an array of all displayNames (value) and the correspondig uids (key) * * Get a list of all display names and user ids. */ @@ -226,7 +226,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief Get a list of all users - * @return array with all uids + * @return array an array of all uids * * Get a list of all users. */ diff --git a/lib/private/user/interface.php b/lib/private/user/interface.php index eee18aea167..80da765cd9f 100644 --- a/lib/private/user/interface.php +++ b/lib/private/user/interface.php @@ -46,7 +46,7 @@ interface OC_User_Interface { /** * @brief Get a list of all users - * @return array with all uids + * @return array an array of all uids * * Get a list of all users. */ @@ -68,7 +68,7 @@ interface OC_User_Interface { /** * @brief Get a list of all display names - * @return array with all displayNames (value) and the corresponding uids (key) + * @return array an array of all displayNames (value) and the corresponding uids (key) * * Get a list of all display names and user ids. */ diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index 6f6fd80a8ef..939f99618d1 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -261,7 +261,7 @@ class Manager extends PublicEmitter { /** * returns how many users per backend exist (if supported by backend) * - * @return array with backend class as key and count number as value + * @return array an array of backend class as key and count number as value */ public function countUsers() { $userCountStatistics = array(); |