let Symfony handle the defualt vote value

Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
This commit is contained in:
Benjamin Brahmer 2021-12-02 21:01:38 +01:00
parent 999a73b182
commit a9e4a5abd3
1 changed files with 1 additions and 4 deletions

View File

@ -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);