Code standards in App

Este commit está contenido en:
Hypolite Petovan 2018-07-15 12:44:32 -04:00
padre b260ca4d1e
commit 9b01a23c9b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados

Ver fichero

@ -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);
}
}