diff --git a/Console/Command/ModuleCommand.php b/Console/Command/ModuleCommand.php index 55de360..92e4c34 100644 --- a/Console/Command/ModuleCommand.php +++ b/Console/Command/ModuleCommand.php @@ -163,5 +163,7 @@ protected function execute(InputInterface $input, OutputInterface $output) // $table->setHeaders(['Param', 'Value']); $table->setRows($rows); $table->render(); + + return Cli::RETURN_SUCCESS; } } diff --git a/Console/Command/ModuleListCommand.php b/Console/Command/ModuleListCommand.php index 48e571f..340261b 100644 --- a/Console/Command/ModuleListCommand.php +++ b/Console/Command/ModuleListCommand.php @@ -154,5 +154,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $table->setRows($rows); $table->render(); + + return Command::SUCCESS; } } diff --git a/Console/Command/ThemeCreateCommand.php b/Console/Command/ThemeCreateCommand.php index 3cfe1d7..9814fb4 100644 --- a/Console/Command/ThemeCreateCommand.php +++ b/Console/Command/ThemeCreateCommand.php @@ -95,5 +95,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $output->writeln('New Local Swissup theme create done!'); $output->writeln('Please run setup:upgrade from Magento CLI'); + + return Command::SUCCESS; } }