Exemplo n.º 1
0
 /**
  * @return Config
  *
  * @throws Exception
  */
 public static function getInstance()
 {
     static $instance = null;
     if ($instance === null) {
         $instance = new Config();
         // store the params
         $instance->params = $instance->processParameters('config.ini');
     }
     return $instance;
 }