give back expected result types as long as logic is not there yet

This commit is contained in:
Arthur Schiwon 2012-04-14 18:08:19 +02:00
parent e160acefe3
commit 19243b3e91
1 changed files with 3 additions and 0 deletions

View File

@ -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();
}
/**