summaryrefslogtreecommitdiffstats
path: root/lib/Command/Updater/AfterUpdate.php
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2020-10-29 08:21:01 +0100
committerGitHub <noreply@github.com>2020-10-29 08:21:01 +0100
commitcfc75fb1d38318245abfc341939ef80cab0b0683 (patch)
tree03e575779248c7a2b2e75641f7225ceb6bdbfc76 /lib/Command/Updater/AfterUpdate.php
parentec6930da8226b9879eb2d7289af739aa96de43ef (diff)
parentc5daf112bed9d958f70073fd1cb199beff322334 (diff)
Merge branch 'master' into fix/dont_overload_getid
Diffstat (limited to 'lib/Command/Updater/AfterUpdate.php')
-rw-r--r--lib/Command/Updater/AfterUpdate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Command/Updater/AfterUpdate.php b/lib/Command/Updater/AfterUpdate.php
index 5746ff1e5..62ceb2710 100644
--- a/lib/Command/Updater/AfterUpdate.php
+++ b/lib/Command/Updater/AfterUpdate.php
@@ -46,7 +46,7 @@ class AfterUpdate extends Command
{
$count = $input->getArgument('purge_count');
- echo $this->itemService->purgeOverThreshold($count);
+ $output->writeln($this->itemService->purgeOverThreshold($count));
return 0;
}