function Application::getDefaultHelperSet
Gets the default helper set with the helpers that should always be available.
1 call to Application::getDefaultHelperSet()
- Application::getHelperSet in vendor/
symfony/ console/ Application.php - Get the helper set associated with the command.
File
-
vendor/
symfony/ console/ Application.php, line 1156
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
protected function getDefaultHelperSet() : HelperSet {
return new HelperSet([
new FormatterHelper(),
new DebugFormatterHelper(),
new ProcessHelper(),
new QuestionHelper(),
]);
}