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