コード例 #1
0
 public function flush()
 {
     parent::flush();
     die;
 }
コード例 #2
0
 public function __construct(Response $createFrom = null)
 {
     parent::__construct($createFrom);
     $this->setContent(array());
     $this->setHeader('Content-Type', 'application/json');
 }
コード例 #3
0
ファイル: Response.php プロジェクト: block8/octo
 public function flush()
 {
     Event::trigger('Response.Flush', $this);
     return parent::flush();
 }