You are here

public function Input::isInteractive in Zircon Profile 8

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

Checks if the input is interactive.

Return value

bool Returns true if the input is interactive

Overrides InputInterface::isInteractive

File

vendor/symfony/console/Input/Input.php, line 93

Class

Input
Input is the base class for all concrete Input classes.

Namespace

Symfony\Component\Console\Input

Code

public function isInteractive() {
  return $this->interactive;
}