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/AfterUpdate.php | 20 +++++++++++++------- lib/Command/Updater/AllFeeds.php | 20 +++++++++++++------- lib/Command/Updater/BeforeUpdate.php | 20 +++++++++++++------- lib/Command/Updater/UpdateFeed.php | 20 +++++++++++++------- 4 files changed, 52 insertions(+), 28 deletions(-) (limited to 'lib/Command/Updater') 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 + * @author Bernhard Posselt * @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(); } diff --git a/lib/Command/Updater/AllFeeds.php b/lib/Command/Updater/AllFeeds.php index 838ce1404..8947c714e 100644 --- a/lib/Command/Updater/AllFeeds.php +++ b/lib/Command/Updater/AllFeeds.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 */ @@ -20,23 +20,29 @@ use Symfony\Component\Console\Output\OutputInterface; use OCA\News\Service\FeedService; -class AllFeeds extends Command { +class AllFeeds extends Command +{ private $feedService; - public function __construct(FeedService $feedService) { + public function __construct(FeedService $feedService) + { parent::__construct(); $this->feedService = $feedService; } - protected function configure() { + protected function configure() + { $json = '{"feeds": [{"id": 39, "userId": "john"}, // etc ]}'; $this->setName('news:updater:all-feeds') - ->setDescription('Prints a JSON string which contains all feed ' . - 'ids and user ids, e.g.: ' . $json); + ->setDescription( + 'Prints a JSON string which contains all feed ' . + 'ids and user ids, e.g.: ' . $json + ); } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output) + { $feeds = $this->feedService->findAllFromAllUsers(); $result = ['feeds' => []]; 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(); } diff --git a/lib/Command/Updater/UpdateFeed.php b/lib/Command/Updater/UpdateFeed.php index 44ac914be..b07cc3e4a 100644 --- a/lib/Command/Updater/UpdateFeed.php +++ b/lib/Command/Updater/UpdateFeed.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 */ @@ -21,15 +21,18 @@ use Symfony\Component\Console\Output\OutputInterface; use OCA\News\Service\FeedService; -class UpdateFeed extends Command { +class UpdateFeed extends Command +{ private $feedService; - public function __construct(FeedService $feedService) { + public function __construct(FeedService $feedService) + { parent::__construct(); $this->feedService = $feedService; } - protected function configure() { + protected function configure() + { $this->setName('news:updater:update-feed') ->addArgument( 'feed-id', @@ -44,15 +47,18 @@ class UpdateFeed extends Command { ->setDescription('Console API for updating a single user\'s feed'); } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output) + { $feedId = $input->getArgument('feed-id'); $userId = $input->getArgument('user-id'); try { $this->feedService->update($feedId, $userId); } catch (Exception $e) { - $output->writeln('Could not update feed with id ' . $feedId . + $output->writeln( + 'Could not update feed with id ' . $feedId . ' and user ' . $userId . ': ' . $e->getMessage() . - ' '); + ' ' + ); } } -- cgit v1.2.3