コード例 #1
0
 public function testDispatch()
 {
     $headers = new Headers();
     $headers->setHeader('Content-Type', 'text/html');
     $this->assertTrue($headers->dispatch());
 }
コード例 #2
0
ファイル: Response.php プロジェクト: delboy1978uk/bone
 /**
  *  Fire th' Cannons!!
  *
  * @return string
  */
 public function send()
 {
     $this->headers->dispatch();
     echo $this->body;
 }