We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2dc6c commit 9bac49cCopy full SHA for 9bac49c
src/DumpCommand.php
@@ -92,7 +92,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
92
foreach ($xml->xpath('/symfony/commands/command') as $xmlCommand) {
93
$command = (string) $xmlCommand['name'];
94
$commands[] = $command;
95
- $commandsDescriptions[$command] = !empty($xmlCommand->description) ? $xmlCommand->description : null;
+ $commandsDescriptions[$command] = !empty($xmlCommand->description) ? strip_tags($xmlCommand->description) : null;
96
$commandsOptionsDescriptions[$command] = array();
97
$commandOptions = array();
98
foreach ($xmlCommand->xpath('options/option') as $commandOption) {
0 commit comments