Overrides CommandLoaderInterface::get
public function get(string $name) : Command { if (!$this->has($name)) { throw new CommandNotFoundException(\sprintf('Command "%s" does not exist.', $name)); } return $this->container ->get($this->commandMap[$name]); }