Ejemplo n.º 1
0
 /**
  * Get singleton instance
  * @return Config
  */
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new Config();
     }
     return self::$_instance;
 }