コード例 #1
0
ファイル: functions.php プロジェクト: neoisldl/Onion
function resp()
{
    return MVC\Response::instance();
}
コード例 #2
0
ファイル: core.php プロジェクト: neoisldl/Onion
 public function getHeader()
 {
     $header = array(Response::httpStatus($this->getCode()));
     if (isset($this->header)) {
         $header = array_merge($header, $this->header);
     }
     return $header;
 }