diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-10 22:32:13 +0200 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:08:14 +0100 |
commit | 7e448a376f96b31dc9c41d0e0ff6492aa8c9f8ca (patch) | |
tree | acd8f58379ee594335a12d790b3decc4fd7dd87d /lib/private/group/database.php | |
parent | 3bed3d2a23748f40c041d9daf9af26a2e16fe03b (diff) | |
download | nextcloud-server-7e448a376f96b31dc9c41d0e0ff6492aa8c9f8ca.tar.gz nextcloud-server-7e448a376f96b31dc9c41d0e0ff6492aa8c9f8ca.zip |
Fix PHPDoc and typos
Some things my IDE complained about while creating a custom backend.
Fix PHPDoc and typos
Some things my IDE complained about while creating a custom backend.
Conflicts:
lib/private/group/database.php
lib/private/group/dummy.php
lib/private/group/example.php
Diffstat (limited to 'lib/private/group/database.php')
-rw-r--r-- | lib/private/group/database.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/group/database.php b/lib/private/group/database.php index 18c060e9b22..91baa3140cc 100644 --- a/lib/private/group/database.php +++ b/lib/private/group/database.php @@ -215,9 +215,8 @@ class OC_Group_Database extends OC_Group_Backend { * @brief get the number of all users matching the search string in a group * @param string $gid * @param string $search - * @param int $limit - * @param int $offset * @return int|false + * @throws DatabaseException */ public function countUsersInGroup($gid, $search = '') { $stmt = OC_DB::prepare('SELECT COUNT(`uid`) AS `count` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ?'); |