예제 #1
0
파일: Defs.php 프로젝트: indynagpal/MateCat
 /**
  * this is a singleton
  */
 public static function getInstance()
 {
     if (!self::$_instance) {
         self::$_instance = new PHPTAL_Dom_Defs();
     }
     return self::$_instance;
 }
예제 #2
0
파일: Defs.php 프로젝트: jeko/pksworld
 public static function setInstance(PHPTAL_Dom_Defs $instance)
 {
     self::$_instance = $instance;
 }