예제 #1
0
파일: Session.php 프로젝트: ab-4c/ImmoPress
 public static function getInstance($sNamespace = null)
 {
     if (!isset(self::$instance)) {
         self::$instance = new self($sNamespace);
     }
     return self::$instance;
 }