Overrides InputInterface::getArgument
public function getArgument(string $name) : mixed { if (!$this->definition ->hasArgument($name)) { throw new InvalidArgumentException(\sprintf('The "%s" argument does not exist.', $name)); } return $this->arguments[$name] ?? $this->definition ->getArgument($name) ->getDefault(); }