Exemple #1
0
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new Config();
     }
     return self::$_instance;
 }
Exemple #2
0
 /**
  * @return AppConfig
  */
 public static function getInstance()
 {
     if (!self::$_instance) {
         self::$_instance = new AppConfig();
     }
     return self::$_instance;
 }