public function Response::getProtocolVersion in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Response.php \Symfony\Component\HttpFoundation\Response::getProtocolVersion()
Gets the HTTP protocol version.
Return value
string The HTTP protocol version
1 call to Response::getProtocolVersion()
- Response::prepare in vendor/
symfony/ http-foundation/ Response.php - Prepares the Response before it is sent to the client.
File
- vendor/
symfony/ http-foundation/ Response.php, line 432
Class
- Response
- Response represents an HTTP response.
Namespace
Symfony\Component\HttpFoundationCode
public function getProtocolVersion() {
return $this->version;
}