public function Input::setInteractive in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Input/Input.php \Symfony\Component\Console\Input\Input::setInteractive()
Sets the input interactivity.
Parameters
bool $interactive If the input should be interactive:
Overrides InputInterface::setInteractive
File
- vendor/
symfony/ console/ Input/ Input.php, line 103
Class
- Input
- Input is the base class for all concrete Input classes.
Namespace
Symfony\Component\Console\InputCode
public function setInteractive($interactive) {
$this->interactive = (bool) $interactive;
}