output = $output; return $this; } /** * @return \Symfony\Component\Console\Output\OutputInterface */ protected function output() { if (!isset($this->output)) { $this->setOutput(new NullOutput()); } return $this->output; } /** * Backwards compatibility * * @return \Symfony\Component\Console\Output\OutputInterface * * @deprecated */ protected function getOutput() { return $this->output(); } }