You are here

public function Request::getUri in Auth0 Single Sign On 8.2

Retrieves the URI instance.

This method MUST return a UriInterface instance.

@link http://tools.ietf.org/html/rfc3986#section-4.3

Return value

UriInterface Returns a UriInterface instance representing the URI of the request.

Overrides RequestInterface::getUri

File

vendor/guzzlehttp/psr7/src/Request.php, line 101

Class

Request
PSR-7 request implementation.

Namespace

GuzzleHttp\Psr7

Code

public function getUri() {
  return $this->uri;
}