summaryrefslogtreecommitdiffstats
path: root/lib/Service/UpdaterService.php
diff options
context:
space:
mode:
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);
}