예제 #1
0
파일: Api.php 프로젝트: rhrn/apirn-kohana
 public function after()
 {
     if ($this->debug) {
         $this->data['debug']['method'] = $this->request->method();
         $this->data['debug']['param'] = $this->request->param();
         $this->data['debug']['post'] = $this->request->post();
         $this->data['debug']['get'] = $this->request->query();
         $this->data['debug']['body'] = $this->request->body();
         $this->data['debug']['headers'] = $this->request->headers();
     }
     $this->errors();
     echo $this->response();
     parent::after();
 }
예제 #2
0
파일: cookie.php 프로젝트: rhrn/apirn
 public function after()
 {
     parent::after();
 }