Ejemplo n.º 1
0
 /**
  * getInstance
  * Get an instance of this class (Provide singleton access to this class)
  * @return IEM_InterspireStash Returns current instance of this class
  */
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new IEM_InterspireStash();
     }
     return self::$_instance;
 }