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 17aa62d commit f405bfdCopy full SHA for f405bfd
src/Symfony/Component/Console/Completion/Output/ZshCompletionOutput.php
@@ -21,6 +21,7 @@ class ZshCompletionOutput implements CompletionOutputInterface
21
{
22
public function write(CompletionSuggestions $suggestions, OutputInterface $output): void
23
24
+ $values = [];
25
foreach ($suggestions->getValueSuggestions() as $value) {
26
$values[] = $value->getValue().($value->getDescription() ? "\t".$value->getDescription() : '');
27
}
0 commit comments