Example #1
0
 /**
  * Singleton method
  *
  * @param null
  * @return MageBridgeConnectorStore
  */
 public static function getInstance()
 {
     static $instance;
     if (null === self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }