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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-08 16:09:16 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-08 16:36:42 +0300
commit7143b9cb687ca75b3be2654d1fe59bff92f24af8 (patch)
tree9bed28d0e3c93908b6fbccaff335e93bc43a95b2 /lib/BackgroundJob
parent5babccec005f665558fc2b8aab669bd8ea27c166 (diff)
Fix psalm errors
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/BackgroundJob')
-rw-r--r--lib/BackgroundJob/CleanupJob.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/BackgroundJob/CleanupJob.php b/lib/BackgroundJob/CleanupJob.php
index 13cf95961..96270db24 100644
--- a/lib/BackgroundJob/CleanupJob.php
+++ b/lib/BackgroundJob/CleanupJob.php
@@ -42,7 +42,7 @@ class CleanupJob extends TimedJob {
$this->setInterval(24 * 60 * 60);
}
- protected function run($argument) {
+ protected function run($argument): void {
$this->cleanupService->cleanUp();
}
}