Code standards in App

This commit is contained in:
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);
}
}