Neos\Flow\Tests\Unit\Http\ResponseTest::rawResponses PHP Method

rawResponses() public method

Data provider
public rawResponses ( )
    public function rawResponses()
    {
        return [[file_get_contents(__DIR__ . '/../Fixtures/RawResponse-1.txt'), ['Server' => 'Apache/2.2.17 (Ubuntu)', 'X-Flow-Powered' => 'Flow/1.2', 'Cache-Control' => 'public, s-maxage=600', 'Vary' => 'Accept-Encoding', 'Content-Encoding' => 'gzip', 'Content-Type' => 'text/html; charset=UTF-8', 'Content-Length' => 3795, 'Date' => \DateTime::createFromFormat(DATE_RFC2822, 'Wed, 29 Aug 2012 09:03:49 GMT'), 'Age' => 550, 'Via' => '1.1 varnish', 'Connection' => 'keep-alive'], 200], [file_get_contents(__DIR__ . '/../Fixtures/RawResponse-2.txt'), ['Server' => 'Apache/2.2.17 (Ubuntu)', 'Location' => 'http://flow.neos.io/', 'Vary' => 'Accept-Encoding', 'Content-Encoding' => 'gzip', 'Content-Type' => 'text/html; charset=iso-8859-1', 'Content-Length' => 243, 'Date' => \DateTime::createFromFormat(DATE_RFC2822, 'Wed, 29 Aug 2012 09:03:46 GMT'), 'X-Varnish' => 1792566338, 'Age' => 0, 'Via' => '1.1 varnish', 'Connection' => 'keep-alive'], 301]];
    }
ResponseTest