8000 Zsh shell autocompletions by adhocore · Pull Request #43970 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Zsh shell autocompletions #43970

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Prev Previous commit
Remove unused return
Co-authored-by: Jérôme Tamarelle <jerome@tamarelle.net>
  • Loading branch information
adhocore and GromNaN authored Nov 11, 2021
commit e209577973c72222a80d6cc852204d1f2973a77b
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,9 @@ public function mustSuggestArgumentValuesFor(string $argumentName): bool
return self::TYPE_ARGUMENT_VALUE === $this->getCompletionType() && $argumentName === $this->getCompletionName();
}

public function setShell(string $shell): string
public function setShell(string $shell): void
{
[$this->shell, $old] = [$shell, $this->shell];

return $old;
$this->shell = $shell;
}

public function isShell(string $shell): bool
Expand Down
0