You are here

public function EasyRdf_ParsedUri::setQuery in Drupal 8

Set the query string of the URI (e.g. foo=bar)

Parameters

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

File

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

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Namespace

Drupal\Tests\rdf\Traits

Code

public function setQuery($query) {
  $this->query = $query;
}