You are here

public function Helper::setHelperSet in Zircon Profile 8.0

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

Code

public function setHelperSet(HelperSet $helperSet = null) {
  $this->helperSet = $helperSet;
}