Fix code style

This commit is contained in:
Art4 2025-02-04 15:21:14 +00:00
parent a006aba9d4
commit 86516d8b28
10 changed files with 92 additions and 104 deletions

View file

@ -123,7 +123,7 @@ class ConfigFileManager
if (file_exists($configName)) {
return $this->loadConfigFile($configName);
} else if (file_exists($iniName)) {
} elseif (file_exists($iniName)) {
return $this->loadINIConfigFile($iniName);
} else {
return [];