container = $container; } public function run(string $command) { $className = '\\Espo\\Core\\Console\\Commands\\' . $command; if (!class_exists($className)) { $msg = "Command '{$command}' does not exist."; echo $msg . "\n"; throw new \Espo\Core\Exceptions\Error($msg); } $impl = new $className($this->container); return $impl->run(); } }