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:
authorRobin McCorkell <rmccorkell@karoshi.org.uk>2014-05-11 21:05:28 +0400
committerRobin McCorkell <rmccorkell@karoshi.org.uk>2014-05-13 22:08:14 +0400
commitb653ad164b83afbc07d7a82d2e4461dace28ba6a (patch)
treee1923c2b5116f0f8a242491f949d56db63288e1a /lib/private/group.php
parentf5bc680f9c725c0aea166f3fc3eee8e0bcf5427c (diff)
Replace @returns with @return, in /lib
Diffstat (limited to 'lib/private/group.php')
-rw-r--r--lib/private/group.php6
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);