You are here

public function RequestContext::getQueryString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/RequestContext.php \Symfony\Component\Routing\RequestContext::getQueryString()

Gets the query string.

Return value

string The query string without the "?"

File

vendor/symfony/routing/RequestContext.php, line 262

Class

RequestContext
Holds information about the current request.

Namespace

Symfony\Component\Routing

Code

public function getQueryString() {
  return $this->queryString;
}