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 'apps/dav/lib/Command/SyncBirthdayCalendar.php')
-rw-r--r--apps/dav/lib/Command/SyncBirthdayCalendar.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/Command/SyncBirthdayCalendar.php b/apps/dav/lib/Command/SyncBirthdayCalendar.php
index f11c5784d55..211df745e41 100644
--- a/apps/dav/lib/Command/SyncBirthdayCalendar.php
+++ b/apps/dav/lib/Command/SyncBirthdayCalendar.php
@@ -96,7 +96,7 @@ class SyncBirthdayCalendar extends Command {
$output->writeln("Start birthday calendar sync for all users ...");
$p = new ProgressBar($output);
$p->start();
- $this->userManager->callForSeenUsers(function($user) use ($p) {
+ $this->userManager->callForSeenUsers(function ($user) use ($p) {
$p->advance();
$userId = $user->getUID();
@@ -113,7 +113,7 @@ class SyncBirthdayCalendar extends Command {
$output->writeln('');
}
- protected function verifyEnabled () {
+ protected function verifyEnabled() {
$isEnabled = $this->config->getAppValue('dav', 'generateBirthdayCalendar', 'yes');
if ($isEnabled !== 'yes') {