Exemplo n.º 1
0
 /**
  * Singleton method
  *
  * @param null
  * @return MageBridgeModelRegister
  */
 public static function getInstance()
 {
     if (null == self::$_instance) {
         self::$_instance = new self();
         self::$_instance->init();
     }
     return self::$_instance;
 }