8000 bug #33805 [FrameworkBundle] Fix wrong returned status code in Config… · symfony/symfony@fb5f8fb · GitHub
[go: up one dir, main page]

Skip to content

Commit fb5f8fb

Browse files
committed
bug #33805 [FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand (jschaedl)
This PR was merged into the 3.4 branch. Discussion ---------- [FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | Fix #33747<!-- prefix each issue number with "Fix #", if any --> | License | MIT | Doc PR | - This is a follow-up PR caused by #33775 (comment) Commits ------- 9b5ced2 [FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand
2 parents db9ef8a + 9b5ced2 commit fb5f8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
104104
} catch (LogicException $e) {
105105
$errorIo->error($e->getMessage());
106106

107-
return;
107+
return 1;
108108
}
109109

110110
$io->title(sprintf('Current configuration for "%s.%s"', $extensionAlias, $path));

0 commit comments

Comments
 (0)
0