Exemplo n.º 1
0
 /**
  * Returns an instance of Ht_Utils_Sms
  *
  * Singleton pattern implementation
  *
  * @return Ht_Utils_Sms Provides a fluent interface
  */
 public static function getInstance($config = array())
 {
     if (null === self::$_instance) {
         self::$_instance = new self($config);
     }
     return self::$_instance;
 }