summaryrefslogtreecommitdiffstats
path: root/lib/Command/ExploreGenerator.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-08-29 23:39:35 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-27 15:35:31 +0200
commitd00d1ab2a28f428223e52b17052c072c64784016 (patch)
treec019f85fb7ac67147dd43ca64b4ac3cda99832f7 /lib/Command/ExploreGenerator.php
parent5687baca75d47dbdffd3de74e865ad2f71ef0cb7 (diff)
Create V2 mapper, Service and management commands
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Command/ExploreGenerator.php')
-rw-r--r--lib/Command/ExploreGenerator.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Command/ExploreGenerator.php b/lib/Command/ExploreGenerator.php
index 2e1b38e91..65c206c5e 100644
--- a/lib/Command/ExploreGenerator.php
+++ b/lib/Command/ExploreGenerator.php
@@ -64,7 +64,7 @@ class ExploreGenerator extends Command
->addOption('votes', null, InputOption::VALUE_OPTIONAL, 'Votes for the feed, defaults to 100');
}
- protected function execute(InputInterface $input, OutputInterface $output)
+ protected function execute(InputInterface $input, OutputInterface $output): int
{
$url = $input->getArgument('feed');
$votes = $input->getOption('votes');
@@ -85,6 +85,7 @@ class ExploreGenerator extends Command
];
$output->writeln(json_encode($result, JSON_PRETTY_PRINT));
+ return 0;
} catch (\Throwable $ex) {
$output->writeln('<error>Failed to fetch feed info:</error>');
$output->writeln($ex->getMessage());