8000 [FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand · symfony/symfony@9b5ced2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b5ced2

Browse files
committed
[FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand
1 parent db9ef8a commit 9b5ced2

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