You are here

protected function Application::getDefaultHelperSet in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Console

Code

protected function getDefaultHelperSet() {
  return new HelperSet(array(
    new FormatterHelper(),
    new DialogHelper(false),
    new ProgressHelper(false),
    new TableHelper(false),
    new DebugFormatterHelper(),
    new ProcessHelper(),
    new QuestionHelper(),
  ));
}