Fixes for laravel 6

This commit is contained in:
Deon George 2020-01-14 21:43:40 +11:00
parent f131db31c6
commit 62f66d7eed
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ if (! function_exists('array_undot')) {
$array = [];
foreach ($dotNotationArray as $key => $value) {
array_set($array, $key, $value);
\Illuminate\Support\Arr::set($array, $key, $value);
}
return $array;