public function Helper::setHelperSet in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Helper/Helper.php \Symfony\Component\Console\Helper\Helper::setHelperSet()
Sets the helper set associated with this helper.
Parameters
HelperSet $helperSet A HelperSet instance:
Overrides HelperInterface::setHelperSet
File
- vendor/
symfony/ console/ Helper/ Helper.php, line 30
Class
- Helper
- Helper is the base class for all helper classes.
Namespace
Symfony\Component\Console\HelperCode
public function setHelperSet(HelperSet $helperSet = null) {
$this->helperSet = $helperSet;
}