function Application::getAbbreviationSuggestions
Returns abbreviated suggestions in string format.
2 calls to Application::getAbbreviationSuggestions()
- Application::find in vendor/
symfony/ console/ Application.php - Finds a command by name or alias.
- Application::findNamespace in vendor/
symfony/ console/ Application.php - Finds a registered namespace by a name or an abbreviation.
File
-
vendor/
symfony/ console/ Application.php, line 1169
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
private function getAbbreviationSuggestions(array $abbrevs) : string {
return ' ' . implode("\n ", $abbrevs);
}