Code standards in App

Cette révision appartient à :
Hypolite Petovan 2018-07-15 12:44:32 -04:00
Parent b260ca4d1e
révision 9b01a23c9b
1 fichiers modifiés avec 2 ajouts et 2 suppressions

Voir le fichier

@ -385,8 +385,8 @@ class App
throw new Exception('Error parsing config file ' . $filepath);
}
foreach($config as $category => $values) {
foreach($values as $key => $value) {
foreach ($config as $category => $values) {
foreach ($values as $key => $value) {
$this->setConfigValue($category, $key, $value);
}
}