예제 #1
0
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;
 }