Neos\Fusion\TypoScriptObjects\Http\ResponseHeadImplementation::getHttpVersion PHP Method

getHttpVersion() public method

Get HTTP protocol version
public getHttpVersion ( ) : string
return string
    public function getHttpVersion()
    {
        $httpVersion = $this->tsValue('httpVersion');
        if ($httpVersion === null) {
            $httpVersion = 'HTTP/1.1';
        }
        return trim($httpVersion);
    }