summaryrefslogtreecommitdiffstats
path: root/lib/Service/UpdaterService.php
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-01-06 20:16:33 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-01-08 22:45:10 +0100
commit7180e11bdb3f27a1a282a137ca95279b39944b5b (patch)
tree17fd8152b8fabcb760395b45b5e47e66022304a9 /lib/Service/UpdaterService.php
parentcc582c5dc8f5c5ec7052f4e2cab8530b9307afaa (diff)
fixes done by psalm
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib/Service/UpdaterService.php')
-rw-r--r--lib/Service/UpdaterService.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Service/UpdaterService.php b/lib/Service/UpdaterService.php
index bc7c9f562..cf18e0c73 100644
--- a/lib/Service/UpdaterService.php
+++ b/lib/Service/UpdaterService.php
@@ -43,20 +43,20 @@ class UpdaterService
}
- public function beforeUpdate()
+ public function beforeUpdate(): void
{
$this->folderService->purgeDeleted(null, null);
$this->feedService->purgeDeleted(null, null);
}
- public function update()
+ public function update(): void
{
$this->feedService->fetchAll();
}
- public function afterUpdate()
+ public function afterUpdate(): void
{
$this->itemService->purgeOverThreshold(null);
}