Exemplo n.º 1
0
 /**
  * Selects a file for the ConfigLoader. When calling the getValue() function the Loader will read that file.
  * @param $file String; of the file WITHOUT extension. The file MUST be placed in config loader and MUST have .config extension
  * @throws ConfigurationException Thrown in case the file does not exists or it is empty.
  */
 public static function selectFile($file)
 {
     parent::selectFile($file);
     self::$lineCount = count(self::$currentFileLines);
     self::$currentLine = 0;
 }