array_merge 대신 + 기호로 충분한 경우(dictionary) +로 변경함.

This commit is contained in:
2018-04-07 18:30:23 +09:00
parent 3d06a13e72
commit cff76c9db9
7 changed files with 11 additions and 13 deletions
+2 -2
View File
@@ -70,12 +70,12 @@ foreach (AppConf::getList() as $setting) {
];
}
$state = array_merge($state, [
$state += [
'name' => $serverDir,
'korName' => $serverKorName,
'color' => $serverColor,
'isRoot' => $serverDir == $rootServer
]);
];
$server[] = $state;
}