diff options
author | Marin Treselj <marin@pixelipo.com> | 2017-08-04 10:23:52 +0200 |
---|---|---|
committer | Marin Treselj <marin@pixelipo.com> | 2017-08-04 10:23:52 +0200 |
commit | 54444110d9868f8fd173129be0b958a1ed5d9e0c (patch) | |
tree | e026d5ac858c114c3c0edc0d2ad96a93740a3b57 /lib/public/IGroup.php | |
parent | a4d984532660637fd7ce604762b019479f641dcd (diff) | |
parent | ac4927809c2cf8d66c9f6aa84a7009b521a8d0d7 (diff) | |
download | nextcloud-server-54444110d9868f8fd173129be0b958a1ed5d9e0c.tar.gz nextcloud-server-54444110d9868f8fd173129be0b958a1ed5d9e0c.zip |
Merge branch 'clean-settings-layout' of github.com:andreasjacobsen93/nextcloud-server into clean-settings-layout
Diffstat (limited to 'lib/public/IGroup.php')
-rw-r--r-- | lib/public/IGroup.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/IGroup.php b/lib/public/IGroup.php index aa51e51046c..788287b4f86 100644 --- a/lib/public/IGroup.php +++ b/lib/public/IGroup.php @@ -60,7 +60,7 @@ interface IGroup { * @return bool * @since 8.0.0 */ - public function inGroup($user); + public function inGroup(IUser $user); /** * add a user to the group @@ -68,7 +68,7 @@ interface IGroup { * @param \OCP\IUser $user * @since 8.0.0 */ - public function addUser($user); + public function addUser(IUser $user); /** * remove a user from the group |