summaryrefslogtreecommitdiffstats
path: root/lib/Command/Config/FeedList.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/Config/FeedList.php')
-rw-r--r--lib/Command/Config/FeedList.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Command/Config/FeedList.php b/lib/Command/Config/FeedList.php
index 0c547868c..3462ff5c8 100644
--- a/lib/Command/Config/FeedList.php
+++ b/lib/Command/Config/FeedList.php
@@ -33,7 +33,7 @@ class FeedList extends Command
{
$this->setName('news:feed:list')
->setDescription('List all feeds')
- ->addArgument('userID', InputArgument::REQUIRED, 'User to list the feeds for')
+ ->addArgument('user-id', InputArgument::REQUIRED, 'User to list the feeds for')
->addOption('recursive', null, InputOption::VALUE_NONE, 'Fetch the feed recursively');
}
@@ -47,7 +47,7 @@ class FeedList extends Command
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
- $user = $input->getArgument('userID');
+ $user = $input->getArgument('user-id');
$recursive = $input->getOption('recursive');
if ($recursive !== false) {