public function Application::setHelperSet in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Application.php \Symfony\Component\Console\Application::setHelperSet()
Set a helper set to be used with the command.
Parameters
HelperSet $helperSet The helper set:
File
- vendor/
symfony/ console/ Application.php, line 200
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
public function setHelperSet(HelperSet $helperSet) {
$this->helperSet = $helperSet;
}