示例#1
0
 /**
  * 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;
 }