Example #1
0
 /**
  * Gets the OpenID_Store_Interface instance.  If none has been set, then the 
  * default store is used (CacheLite).
  * 
  * @return OpenID_Store_Interface
  */
 public static function getStore()
 {
     if (!self::$store instanceof OpenID_Store_Interface) {
         self::$store = OpenID_Store::factory();
     }
     return self::$store;
 }