summaryrefslogtreecommitdiffstats
path: root/lib/Command
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-01-28 22:32:49 +0100
committerGitHub <noreply@github.com>2019-01-28 22:32:49 +0100
commit9cd871983a368752d122a73da244606bdeba312f (patch)
treed1882e1e677d7cee12926e5688ccfbfd31a505f5 /lib/Command
parent31b2f194af74bdba60bdd2640e5fc47340157795 (diff)
parentbecce6b7520912257c3d72697a3aefec9923a467 (diff)
Merge pull request #382 from SMillerDev/codestyle_psr2
Define an official codestyle and adhere to it.
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/Updater/AfterUpdate.php7
-rw-r--r--lib/Command/Updater/AllFeeds.php8
-rw-r--r--lib/Command/Updater/BeforeUpdate.php7
-rw-r--r--lib/Command/Updater/UpdateFeed.php8
4 files changed, 12 insertions, 18 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();
}
-
}
diff --git a/lib/Command/Updater/AllFeeds.php b/lib/Command/Updater/AllFeeds.php
index 2337f7aa8..93ef4e59a 100644
--- a/lib/Command/Updater/AllFeeds.php
+++ b/lib/Command/Updater/AllFeeds.php
@@ -19,18 +19,17 @@ use Symfony\Component\Console\Output\OutputInterface;
use OCA\News\Service\FeedService;
-
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 ]}';
@@ -41,7 +40,7 @@ class AllFeeds extends Command
);
}
- protected function execute(InputInterface $input, OutputInterface $output)
+ protected function execute(InputInterface $input, OutputInterface $output)
{
$feeds = $this->feedService->findAllFromAllUsers();
$result = ['feeds' => []];
@@ -56,5 +55,4 @@ class AllFeeds extends Command
print(json_encode($result));
}
-
}
diff --git a/lib/Command/Updater/BeforeUpdate.php b/lib/Command/Updater/BeforeUpdate.php
index 9d562d010..3a0b1ca72 100644
--- a/lib/Command/Updater/BeforeUpdate.php
+++ b/lib/Command/Updater/BeforeUpdate.php
@@ -23,13 +23,13 @@ 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(
@@ -39,9 +39,8 @@ class BeforeUpdate extends Command
);
}
- 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 b07cc3e4a..f5cda22ad 100644
--- a/lib/Command/Updater/UpdateFeed.php
+++ b/lib/Command/Updater/UpdateFeed.php
@@ -20,18 +20,17 @@ use Symfony\Component\Console\Output\OutputInterface;
use OCA\News\Service\FeedService;
-
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(
@@ -47,7 +46,7 @@ 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');
@@ -61,5 +60,4 @@ class UpdateFeed extends Command
);
}
}
-
}