getCurrentOperatorApiKeyId(); $model = new \Models\Country(); return $model->checkAccess($countryId, $apiKey); } public function getCountryById(int $countryId): array { $apiKey = $this->getCurrentOperatorApiKeyId(); $model = new \Models\Country(); return $model->getCountryById($countryId, $apiKey); } }