aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Group/Database.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Group/Database.php')
-rw-r--r--lib/private/Group/Database.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/private/Group/Database.php b/lib/private/Group/Database.php
index 99654b5d1f2..b75dc097c97 100644
--- a/lib/private/Group/Database.php
+++ b/lib/private/Group/Database.php
@@ -113,7 +113,7 @@ class Database extends ABackend
->setValue('gid', $builder->createNamedParameter($gid))
->setValue('displayname', $builder->createNamedParameter($gid))
->execute();
- } catch(UniqueConstraintViolationException $e) {
+ } catch (UniqueConstraintViolationException $e) {
$result = 0;
}
@@ -194,14 +194,14 @@ class Database extends ABackend
$this->fixDI();
// No duplicate entries!
- if(!$this->inGroup($uid, $gid)) {
+ if (!$this->inGroup($uid, $gid)) {
$qb = $this->dbConn->getQueryBuilder();
$qb->insert('group_user')
->setValue('uid', $qb->createNamedParameter($uid))
->setValue('gid', $qb->createNamedParameter($gid))
->execute();
return true;
- }else{
+ } else {
return false;
}
}
@@ -250,7 +250,7 @@ class Database extends ABackend
->execute();
$groups = [];
- while($row = $cursor->fetch()) {
+ while ($row = $cursor->fetch()) {
$groups[] = $row['gid'];
$this->groupCache[$row['gid']] = $row['gid'];
}
@@ -473,5 +473,4 @@ class Database extends ABackend
return true;
}
-
}