Esempio n. 1
0
 /**
  * Terminate context
  *
  * @return string
  */
 public function end()
 {
     return $this->response->send();
 }
Esempio n. 2
0
 /**
  * Send response
  *
  * @return string
  */
 public function send()
 {
     $this->content = file_get_contents($this->filename);
     parent::send();
     exit;
 }
Esempio n. 3
0
 /**
  * Send response
  *
  * @return string
  */
 public function send()
 {
     $this->header('Location', $this->uri);
     parent::send();
     exit;
 }