getConfigFile(); if (!$this->config) { $this->config = Config::get($this->configFile . '.stores.' . $this->name, []); } $handleAccessToken = new AccessTokenServeService($this->config['access_key'] ?? '', $this->config['secret_key'] ?? '', app()->cache); $handle = Container::getInstance()->invokeClass($class, [$this->name, $handleAccessToken, $this->configFile]); $this->config = []; return $handle; } }