From 5b94705cf3918dc7986c6043b1fbe776bf22958f Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Tue, 27 Mar 2018 15:35:06 +0200 Subject: Core: Fix compatibility with nextcloud codestyle (#280) --- lib/Command/Updater/BeforeUpdate.php | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'lib/Command/Updater/BeforeUpdate.php') diff --git a/lib/Command/Updater/BeforeUpdate.php b/lib/Command/Updater/BeforeUpdate.php index 9a384d95a..9d562d010 100644 --- a/lib/Command/Updater/BeforeUpdate.php +++ b/lib/Command/Updater/BeforeUpdate.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 + * @author Bernhard Posselt * @copyright Bernhard Posselt 2016 */ @@ -19,22 +19,28 @@ use Symfony\Component\Console\Output\OutputInterface; use \OCA\News\Utility\Updater; -class BeforeUpdate extends Command { +class BeforeUpdate 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:before-update') - ->setDescription('This is used to clean up the database. It ' . + ->setDescription( + 'This is used to clean up the database. It ' . 'deletes folders and feeds that are marked for ' . - 'deletion'); + 'deletion' + ); } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output) + { $this->updater->beforeUpdate(); } -- cgit v1.2.3