Skip to content

Commit 22d8a9e

Browse files
fix suggestions
1 parent 1d81ca2 commit 22d8a9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup/src/Magento/Setup/Console/Command/ModuleStatusCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
6262
foreach ($moduleNames as $moduleName) {
6363
$this->showSpecificModule($moduleName, $output);
6464
}
65-
return 0;
65+
return Cli::RETURN_SUCCESS;
6666
}
6767

6868
$onlyEnabled = $input->getOption('enabled');
@@ -83,7 +83,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8383
$this->showDisabledModules($output);
8484
$output->writeln('');
8585

86-
return 0;
86+
return Cli::RETURN_SUCCESS;
8787
}
8888

8989
/**

0 commit comments

Comments
 (0)