summaryrefslogtreecommitdiffstats
path: root/lib/Command/Updater/AfterUpdate.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-10-28 23:06:49 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2020-10-29 08:19:03 +0100
commitc5daf112bed9d958f70073fd1cb199beff322334 (patch)
tree1ad53dd9da69bf6e991339b97ad754755b6e13fe /lib/Command/Updater/AfterUpdate.php
parent47104a1971f1c254ade89d9c084e73a446cc8c20 (diff)
Command: Add unittests
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
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;
}