You are here

protected function CustomApplication::getDefaultHelperSet in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Tests/ApplicationTest.php \Symfony\Component\Console\Tests\CustomApplication::getDefaultHelperSet()

Gets the default helper set with the helpers that should always be available.

Return value

HelperSet A HelperSet instance

Overrides Application::getDefaultHelperSet

File

vendor/symfony/console/Tests/ApplicationTest.php, line 1041

Class

CustomApplication

Namespace

Symfony\Component\Console\Tests

Code

protected function getDefaultHelperSet() {
  return new HelperSet(array(
    new FormatterHelper(),
  ));
}