@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | */ |
19 | 19 | public static function transformPostgresTextArrayToPHPArray(string $postgresArray): array |
20 | 20 | { |
21 | - $transform = static function (string $textArrayToTransform): array { |
|
21 | + $transform = static function(string $textArrayToTransform): array { |
|
22 | 22 | $indicatesMultipleDimensions = \mb_strpos($textArrayToTransform, '},{') !== false |
23 | 23 | || \mb_strpos($textArrayToTransform, '{{') === 0; |
24 | 24 | if ($indicatesMultipleDimensions) { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public static function transformPHPArrayToPostgresTextArray(array $phpArray): string |
66 | 66 | { |
67 | - $transform = static function (array $phpArrayToTransform): string { |
|
67 | + $transform = static function(array $phpArrayToTransform): string { |
|
68 | 68 | $result = []; |
69 | 69 | foreach ($phpArrayToTransform as $text) { |
70 | 70 | if (is_array($text)) { |