protected function Application::getDefaultHelperSet in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Application.php \Symfony\Component\Console\Application::getDefaultHelperSet()
Gets the default helper set with the helpers that should always be available.
Return value
HelperSet A HelperSet instance
1 call to Application::getDefaultHelperSet()
- Application::__construct in vendor/
symfony/ console/ Application.php - Constructor.
1 method overrides Application::getDefaultHelperSet()
- CustomApplication::getDefaultHelperSet in vendor/
symfony/ console/ Tests/ ApplicationTest.php - Gets the default helper set with the helpers that should always be available.
File
- vendor/
symfony/ console/ Application.php, line 915
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
protected function getDefaultHelperSet() {
return new HelperSet(array(
new FormatterHelper(),
new DialogHelper(false),
new ProgressHelper(false),
new TableHelper(false),
new DebugFormatterHelper(),
new ProcessHelper(),
new QuestionHelper(),
));
}