Skip to content

Commit f405bfd

Browse files
author
Kevin Meijer
committed
Fixed undefined variable error
1 parent 17aa62d commit f405bfd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Symfony/Component/Console/Completion/Output/ZshCompletionOutput.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class ZshCompletionOutput implements CompletionOutputInterface
2121
{
2222
public function write(CompletionSuggestions $suggestions, OutputInterface $output): void
2323
{
24+
$values = [];
2425
foreach ($suggestions->getValueSuggestions() as $value) {
2526
$values[] = $value->getValue().($value->getDescription() ? "\t".$value->getDescription() : '');
2627
}

0 commit comments

Comments
 (0)