You are here

public function AkamaiClientBase::setBaseUrl in Akamai 8.3

Sets Akamai base url.

Parameters

string $url: The base url of the site Akamai is managing, eg 'http://example.com'.

Return value

$this

File

src/AkamaiClientBase.php, line 421

Class

AkamaiClientBase
Connects to the Akamai EdgeGrid.

Namespace

Drupal\akamai

Code

public function setBaseUrl($url) {
  $this->baseUrl = $url;
  return $this;
}