8000 Add completion to messenger:setup-transports command · symfony/symfony@e78aafe · GitHub
[go: up one dir, main page]

Skip to content

Commit e78aafe

Browse files
committed
Add completion to messenger:setup-transports command
1 parent 5c5900c commit e78aafe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Messenger/Command/SetupTransportsCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8686

8787
public function complete(CompletionInput $input, CompletionSuggestions $suggestions): void
8888
{
89-
if (!$input->mustSuggestArgumentValuesFor('transport')) {
89+
if ($input->mustSuggestArgumentValuesFor('transport')) {
9090
$suggestions->suggestValues($this->transportNames);
9191

9292
return;

0 commit comments

Comments
 (0)
0