Apply code changes after dependency update

This commit is contained in:
2023-12-01 11:06:10 +01:00
parent c5400b78d8
commit a3be3f026d
13 changed files with 85 additions and 98 deletions

View File

@ -25,7 +25,7 @@ final class Arr
} else {
$values = $depth === 1
? array_values($item)
: static::flatten($item, $depth - 1);
: self::flatten($item, $depth - 1);
foreach ($values as $value) {
$result[] = $value;