You are here

public function ConsoleEvent::getInput in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Event/ConsoleEvent.php \Symfony\Component\Console\Event\ConsoleEvent::getInput()

Gets the input instance.

Return value

InputInterface An InputInterface instance

File

vendor/symfony/console/Event/ConsoleEvent.php, line 53

Class

ConsoleEvent
Allows to inspect input and output of a command.

Namespace

Symfony\Component\Console\Event

Code

public function getInput() {
  return $this->input;
}