public function EasyRdf_ParsedUri::setScheme in Drupal 8
Sets the scheme of the URI (e.g. http)
Parameters
string $scheme The new value for the scheme of the URI:
File
- core/
modules/ rdf/ tests/ src/ Traits/ EasyRdf_ParsedUri.php, line 136
Class
- EasyRdf_ParsedUri
- A RFC3986 compliant URI parser
Namespace
Drupal\Tests\rdf\TraitsCode
public function setScheme($scheme) {
$this->scheme = $scheme;
}