Skip to content

Commit

Permalink
Laravel 5.8 Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ben182 committed Apr 13, 2019
1 parent 1a2872a commit ecb4c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AutoTranslate.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function fillLanguageFiles(string $language, array $data)
public function array_undot(array $dottedArray, array $initialArray = []) : array
{
foreach ($dottedArray as $key => $value) {
array_set($initialArray, $key, $value);
Arr::set($initialArray, $key, $value);
}

return $initialArray;
Expand Down

0 comments on commit ecb4c17

Please sign in to comment.