scopeConfig = $scopeConfig; } /** * Get distance between two points * * @return string * @throws LocalizedException */ public function execute(): string { $apiKey = trim((string) $this->scopeConfig->getValue(self::XML_PATH_API_KEY)); if (!$apiKey) { throw new LocalizedException(__('Google API key is not defined')); } return $apiKey; } }