public function EasyRdf_ParsedUri::setAuthority

Sets the authority of the URI (e.g. www.example.com:8080)

Parameters

string $authority The new value for the authority component of the URI:

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php, line 141

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Code

public function setAuthority($authority) {
  $this->authority = $authority;
}