You are here

private function Client::urlFor in Smart IP 7.2

Same name and namespace in other branches
  1. 6.2 includes/vendor/maxmind/web-service-common/src/WebService/Client.php \MaxMind\WebService\Client::urlFor()

Parameters

string $path The path to use in the URL:

Return value

string The constructed URL

5 calls to Client::urlFor()
Client::createRequest in includes/vendor/maxmind/web-service-common/src/WebService/Client.php
Client::handle4xx in includes/vendor/maxmind/web-service-common/src/WebService/Client.php
Client::handle5xx in includes/vendor/maxmind/web-service-common/src/WebService/Client.php
Client::handleUnexpectedStatus in includes/vendor/maxmind/web-service-common/src/WebService/Client.php
Client::handleWebServiceError in includes/vendor/maxmind/web-service-common/src/WebService/Client.php

File

includes/vendor/maxmind/web-service-common/src/WebService/Client.php, line 229

Class

Client
This class is not intended to be used directly by an end-user of a MaxMind web service. Please use the appropriate client API for the service that you are using. @package MaxMind\WebService @internal

Namespace

MaxMind\WebService

Code

private function urlFor($path) {
  return 'https://' . $this->host . $path;
}