Skip to content

Commit

Permalink
Merge pull request #664 from owncloud/symfony-command-execute-int
Browse files Browse the repository at this point in the history
Always return an int from Symfony Command execute method
  • Loading branch information
phil-davis authored May 18, 2023
2 parents 826ba31 + afbd434 commit c87edd5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions lib/command/createbucket.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ protected function configure() {
* @param InputInterface $input
* @param OutputInterface $output
*
* @return int|null|void
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output) {
protected function execute(InputInterface $input, OutputInterface $output): int {
if (!$input->getOption('accept-warning')) {
$helper = new QuestionHelper();
$q = <<<EOS
Expand Down Expand Up @@ -108,6 +108,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
'Status' => 'Enabled',
'MFADelete' => 'Disabled']
]);
return 0;
}

private function getClient() {
Expand Down
5 changes: 3 additions & 2 deletions lib/command/s3list.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ protected function configure() {
* @param InputInterface $input
* @param OutputInterface $output
*
* @return int|null|void
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output) {
protected function execute(InputInterface $input, OutputInterface $output): int {
$client = $this->getClient();

$bucketName = $input->getArgument('bucket');
Expand Down Expand Up @@ -100,6 +100,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
$this->printValue($output, $markers, ['Key', 'LastModified', 'VersionId', 'IsLatest']);
}
}
return 0;
}

private function getClient() {
Expand Down

0 comments on commit c87edd5

Please sign in to comment.