From a9e4a5abd36e00908b08d5b135e8581b78c7bc9d Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Thu, 2 Dec 2021 21:01:38 +0100 Subject: let Symfony handle the defualt vote value Signed-off-by: Benjamin Brahmer --- lib/Command/ExploreGenerator.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/Command/ExploreGenerator.php b/lib/Command/ExploreGenerator.php index 01ef2a866..b8392ce53 100644 --- a/lib/Command/ExploreGenerator.php +++ b/lib/Command/ExploreGenerator.php @@ -64,16 +64,13 @@ class ExploreGenerator extends Command 'feed URL and votes, e.g.: ' . json_encode($result) ) ->addArgument('feed', InputArgument::REQUIRED, 'Feed to parse') - ->addOption('votes', null, InputOption::VALUE_OPTIONAL, 'Votes for the feed, defaults to 100'); + ->addOption('votes', null, InputOption::VALUE_OPTIONAL, 'Votes for the feed, defaults to 100', 100); } protected function execute(InputInterface $input, OutputInterface $output): int { $url = $input->getArgument('feed'); $votes = $input->getOption('votes'); - if (!$votes) { - $votes = 100; - } try { $resource = $this->reader->read($url); -- cgit v1.2.3