@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function arrayOfArrayObjectToAssociativeArray(array $arrayOfArrayObject, array $options = []): array |
29 | 29 | { |
30 | - array_walk($arrayOfArrayObject, static function (\ArrayObject &$entry) use ($options): void { |
|
30 | + array_walk($arrayOfArrayObject, static function(\ArrayObject &$entry) use ($options): void { |
|
31 | 31 | $entry = self::normalizeValues($entry->getArrayCopy(), $options); |
32 | 32 | }); |
33 | 33 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $options = self::NORMALIZER_OPTIONS; |
57 | 57 | } |
58 | 58 | |
59 | - return array_map(static function ($value) use ($options) { |
|
59 | + return array_map(static function($value) use ($options) { |
|
60 | 60 | if ($value instanceof \ArrayObject) { |
61 | 61 | return self::arrayObjectToAssociativeArray($value, $options); |
62 | 62 | } |