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.php20
1 files changed, 13 insertions, 7 deletions
diff --git a/lib/Command/Updater/AfterUpdate.php b/lib/Command/Updater/AfterUpdate.php
index 728d2a937..a9becf543 100644
--- a/lib/Command/Updater/AfterUpdate.php
+++ b/lib/Command/Updater/AfterUpdate.php
@@ -5,7 +5,7 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2016
*/
@@ -19,21 +19,27 @@ use Symfony\Component\Console\Output\OutputInterface;
use \OCA\News\Utility\Updater;
-class AfterUpdate extends Command {
+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('This is used to clean up the database. It ' .
- 'removes old read articles which are not starred');
+ ->setDescription(
+ 'This is used to clean up the database. It ' .
+ 'removes old read articles which are not starred'
+ );
}
- protected function execute(InputInterface $input, OutputInterface $output) {
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
$this->updater->afterUpdate();
}