Code standards in App

这个提交包含在:
Hypolite Petovan 2018-07-15 12:44:32 -04:00
父节点 b260ca4d1e
当前提交 9b01a23c9b
共有 1 个文件被更改,包括 2 次插入2 次删除

查看文件

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