public function Request::getUri in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/http-foundation/Request.php \Symfony\Component\HttpFoundation\Request::getUri()
- 8 vendor/symfony/browser-kit/Request.php \Symfony\Component\BrowserKit\Request::getUri()
- 8 vendor/guzzlehttp/psr7/src/Request.php \GuzzleHttp\Psr7\Request::getUri()
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/src/Request.php \GuzzleHttp\Psr7\Request::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/
guzzlehttp/ psr7/ src/ Request.php, line 108
Class
- Request
- PSR-7 request implementation.
Namespace
GuzzleHttp\Psr7Code
public function getUri() {
return $this->uri;
}