chore: style changes

This commit is contained in:
Nuno Maduro
2023-03-21 13:42:21 +00:00
parent f4d19c90d3
commit 236a9bd7ce
3 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ final class Arr
foreach ($array as $key => $value) {
if (is_array($value) && $value !== []) {
$results = array_merge($results, static::dot($value, $prepend.$key.'.'));
$results = array_merge($results, self::dot($value, $prepend.$key.'.'));
} else {
$results[$prepend.$value] = $value;
}