You are here

public function ServerRequest::getUri in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/psr-http-message-bridge/Tests/Fixtures/ServerRequest.php \Symfony\Bridge\PsrHttpMessage\Tests\Fixtures\ServerRequest::getUri()

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/symfony/psr-http-message-bridge/Tests/Fixtures/ServerRequest.php, line 67

Class

ServerRequest
@author Kévin Dunglas <dunglas@gmail.com>

Namespace

Symfony\Bridge\PsrHttpMessage\Tests\Fixtures

Code

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