setInput($input); } if ($output !== null) { $this->setOutput($output); } } /** * @inheritDoc */ public function getInput(): InputInterface { return $this->input; } /** * @inheritDoc */ public function setInput(InputInterface $input): CreationInterface { $this->input = $input; return $this; } /** * @inheritDoc */ public function getOutput(): OutputInterface { return $this->output; } /** * @inheritDoc */ public function setOutput(OutputInterface $output): CreationInterface { $this->output = $output; return $this; } }