See also: http://tools.ietf.org/html/rfc2616#section-6
コード例 #1
0
ファイル: ResponseTest.php プロジェクト: 99designs/ergo
 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'));
 }