You are here

public function InputAwareHelper::setInput in Zircon Profile 8

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

Sets the Console Input.

Parameters

InputInterface:

Overrides InputAwareInterface::setInput

File

vendor/symfony/console/Helper/InputAwareHelper.php, line 29

Class

InputAwareHelper
An implementation of InputAwareInterface for Helpers.

Namespace

Symfony\Component\Console\Helper

Code

public function setInput(InputInterface $input) {
  $this->input = $input;
}