Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed undefined variable error
  • Loading branch information
Kevin Meijer committed Dec 1, 2022
commit f405bfd8009b7cf22c1bd28422b0f722fcde4756
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class ZshCompletionOutput implements CompletionOutputInterface
{
public function write(CompletionSuggestions $suggestions, OutputInterface $output): void
{
$values = [];
foreach ($suggestions->getValueSuggestions() as $value) {
$values[] = $value->getValue().($value->getDescription() ? "\t".$value->getDescription() : '');
}
Expand Down