Compare commits

...

1 Commits

Author SHA1 Message Date
Deon George
62f66d7eed Fixes for laravel 6 2020-01-14 21:43:40 +11:00

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;