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/group.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/group.php')
-rw-r--r-- | lib/private/group.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/group.php b/lib/private/group.php index ea6384bae3e..3191de5310a 100644 --- a/lib/private/group.php +++ b/lib/private/group.php @@ -203,7 +203,7 @@ class OC_Group { * @param string $search * @param int|null $limit * @param int|null $offset - * @returns array with group names + * @return array with group names * * Returns a list with all groups */ @@ -232,7 +232,7 @@ class OC_Group { * @param string $search * @param int $limit * @param int $offset - * @returns array with user ids + * @return array with user ids */ public static function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { $group = self::getManager()->get($gid); @@ -271,7 +271,7 @@ class OC_Group { * @param string $search * @param int $limit * @param int $offset - * @returns array with display names (value) and user ids(key) + * @return array with display names (value) and user ids(key) */ public static function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { return self::getManager()->displayNamesInGroup($gid, $search, $limit, $offset); |