You are here

public function EasyRdf_ParsedUri::getAuthority in Drupal 8

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

Return value

string

File

core/modules/rdf/tests/src/Traits/EasyRdf_ParsedUri.php, line 144

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Namespace

Drupal\Tests\rdf\Traits

Code

public function getAuthority() {
  return $this->authority;
}