コード例 #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();
 }