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/Group.php')
-rw-r--r--lib/private/Group/Group.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Group/Group.php b/lib/private/Group/Group.php
index 9eb1b616609..2e16d5f1242 100644
--- a/lib/private/Group/Group.php
+++ b/lib/private/Group/Group.php
@@ -265,8 +265,8 @@ class Group implements IGroup {
public function count($search = '') {
$users = false;
foreach ($this->backends as $backend) {
- if($backend->implementsActions(\OC\Group\Backend::COUNT_USERS)) {
- if($users === false) {
+ if ($backend->implementsActions(\OC\Group\Backend::COUNT_USERS)) {
+ if ($users === false) {
//we could directly add to a bool variable, but this would
//be ugly
$users = 0;
@@ -285,8 +285,8 @@ class Group implements IGroup {
public function countDisabled() {
$users = false;
foreach ($this->backends as $backend) {
- if($backend instanceof ICountDisabledInGroup) {
- if($users === false) {
+ if ($backend instanceof ICountDisabledInGroup) {
+ if ($users === false) {
//we could directly add to a bool variable, but this would
//be ugly
$users = 0;