예제 #1
0
파일: Instance.php 프로젝트: eryx/labs
 public static function getInstance()
 {
     if (self::$_instance === NULL) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
예제 #2
0
파일: Session.php 프로젝트: eryx/labs
 public static function getInstance()
 {
     return Common_Session_Instance::getInstance();
 }