Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Group/Database.php')
-rw-r--r--lib/private/Group/Database.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Group/Database.php b/lib/private/Group/Database.php
index 48b01461531..ba023d64acb 100644
--- a/lib/private/Group/Database.php
+++ b/lib/private/Group/Database.php
@@ -165,7 +165,7 @@ class Database extends ABackend
*
* Checks whether the user is member of a group or not.
*/
- public function inGroup( $uid, $gid ) {
+ public function inGroup($uid, $gid) {
$this->fixDI();
// check
@@ -234,7 +234,7 @@ class Database extends ABackend
* This function fetches all groups a user belongs to. It does not check
* if the user exists at all.
*/
- public function getUserGroups( $uid ) {
+ public function getUserGroups($uid) {
//guests has empty or null $uid
if ($uid === null || $uid === '') {
return [];