From 19243b3e91d22314e979a0f427f13960d13715c4 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Sat, 14 Apr 2012 18:08:19 +0200 Subject: [PATCH] give back expected result types as long as logic is not there yet --- apps/user_ldap/group_ldap.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index a55c906486..b9d00fc78a 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(); } /**