예제 #1
0
파일: Dispatcher.php 프로젝트: biGGs24/sgl2
 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();
 }