See also: http://tools.ietf.org/html/rfc2616#section-6
Beispiel #1
0
 public function testExport()
 {
     $response = new Http\Response(200, array('Content-Type: text/html'), 'Food goes in here');
     $this->assertEquals($response->export(), array(200, array('Content-Type: text/html'), 'Food goes in here'));
 }