예제 #1
0
파일: HttpApp.php 프로젝트: weew/http-app
 /**
  * @param IHttpResponse $response
  */
 public function shutdownWithResponse(IHttpResponse $response)
 {
     $this->shutdown();
     $response->send();
     exit;
 }