Upgrade to 3.2.4

This commit is contained in:
Bastian Allgeier
2019-09-03 11:01:57 +02:00
parent f79bc3248c
commit ff9b5b1861
25 changed files with 1053 additions and 140 deletions

View File

@@ -93,7 +93,7 @@ class A
while ($innerKey = array_shift($keys)) {
$currentKey = $currentKey . '.' . $innerKey;
if (isset($array[$currentKey]) === true) {
if (isset($array[$currentKey]) === true && is_array($array[$currentKey])) {
return static::get($array[$currentKey], implode('.', $keys), $default);
}
}