summaryrefslogtreecommitdiffstats
path: root/lib/Command/Updater/AfterUpdate.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/Updater/AfterUpdate.php')
-rw-r--r--lib/Command/Updater/AfterUpdate.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/Command/Updater/AfterUpdate.php b/lib/Command/Updater/AfterUpdate.php
index a9becf543..c80913fab 100644
--- a/lib/Command/Updater/AfterUpdate.php
+++ b/lib/Command/Updater/AfterUpdate.php
@@ -23,13 +23,13 @@ class AfterUpdate extends Command
{
private $updater;
- public function __construct(Updater $updater)
+ public function __construct(Updater $updater)
{
parent::__construct();
$this->updater = $updater;
}
- protected function configure()
+ protected function configure()
{
$this->setName('news:updater:after-update')
->setDescription(
@@ -38,9 +38,8 @@ class AfterUpdate extends Command
);
}
- protected function execute(InputInterface $input, OutputInterface $output)
+ protected function execute(InputInterface $input, OutputInterface $output)
{
$this->updater->afterUpdate();
}
-
}