input = $input; return $this; } /** * @return \Symfony\Component\Console\Input\InputInterface */ protected function input() { if (!isset($this->input)) { $this->setInput(new ArgvInput()); } return $this->input; } /** * Backwards compatibility. * * @return \Symfony\Component\Console\Input\InputInterface * * @deprecated */ protected function getInput() { return $this->input(); } }