예제 #1
0
파일: Server.php 프로젝트: aoyel/angel
 public function init()
 {
     parent::init();
     $this->pidfile = Angel::app()->runtimePath . DIRECTORY_SEPARATOR . "socket_server.pid";
     $this->logfile = Angel::app()->runtimePath . DIRECTORY_SEPARATOR . "socket_server.log";
 }
예제 #2
0
파일: Session.php 프로젝트: aoyel/angel
 public function init()
 {
     parent::init();
     $this->start();
     register_shutdown_function([$this, 'close']);
 }
예제 #3
0
파일: View.php 프로젝트: aoyel/angel
 public function init()
 {
     parent::init();
 }
예제 #4
0
파일: Request.php 프로젝트: aoyel/angel
 public function init()
 {
     parent::init();
     $this->filterRequest();
 }