Example #1
0
 public static function get()
 {
     if (self::$config === null) {
         self::$config = parse_ini_file(CONFIG_PATH, true);
     }
     return self::$config;
 }
Example #2
0
 public static function instance()
 {
     //
     if (self::$config == null) {
         self::$config = new Configuration();
     }
     return self::$config;
 }