示例#1
0
 public static function getInstance()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
示例#2
0
文件: Registry.php 项目: biGGs24/sgl2
 public function init(Zend_Config $config)
 {
     $this->config = $config;
     $this->dispatcher = Uber_Event_Dispatcher::getInstance();
 }