public function EasyRdf_ParsedUri::setScheme

Sets the scheme of the URI (e.g. http)

Parameters

string $scheme The new value for the scheme of the URI:

File

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

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Code

public function setScheme($scheme) {
  $this->scheme = $scheme;
}