diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-04-14 18:08:19 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-04-14 18:08:40 +0200 |
commit | 19243b3e91d22314e979a0f427f13960d13715c4 (patch) | |
tree | 36a506532eb9ac6b33935ab4dcceeba1f81b9945 /apps | |
parent | e160acefe3fd60ef92fe76b9e637c12e3f03918d (diff) | |
download | nextcloud-server-19243b3e91d22314e979a0f427f13960d13715c4.tar.gz nextcloud-server-19243b3e91d22314e979a0f427f13960d13715c4.zip |
give back expected result types as long as logic is not there yet
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/group_ldap.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index a55c9064864..b9d00fc78af 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -40,6 +40,7 @@ * Checks whether the user is member of a group or not. */ public function inGroup($uid, $gid) { + return array(); } /** @@ -51,6 +52,7 @@ * if the user exists at all. */ public function getUserGroups($uid) { + return array(); } /** @@ -58,6 +60,7 @@ * @returns array with user ids */ public function getUsersInGroup($gid) { + return array(); } /** |