This commit is contained in:
xl
2023-05-26 10:26:13 +08:00
parent a1c0da9688
commit fff3211e61
3 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ class ConfigProvider
{
$keys = explode($key, '.');
$hashMap = $this->hashMap->get(array_unshift($keys));
$hashMap = $this->hashMap->get(array_shift($keys));
if (is_null($hashMap)) {
return $default;
}