You are here

public function Command::setHelperSet in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Command/Command.php \Symfony\Component\Console\Command\Command::setHelperSet()

Sets the helper set.

Parameters

HelperSet $helperSet A HelperSet instance:

1 call to Command::setHelperSet()
Command::setApplication in vendor/symfony/console/Command/Command.php
Sets the application instance for this command.

File

vendor/symfony/console/Command/Command.php, line 99

Class

Command
Base class for all commands.

Namespace

Symfony\Component\Console\Command

Code

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