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();
 }