@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | */ |
20 | 20 | public static function transformPostgresTextArrayToPHPArray($postgresArray) |
21 | 21 | { |
22 | - $transform = function ($textArrayToTransform) use (&$transform) { |
|
22 | + $transform = function($textArrayToTransform) use (&$transform) { |
|
23 | 23 | $phpArray = str_getcsv(trim($textArrayToTransform, '{}')); |
24 | 24 | foreach ($phpArray as $i => $text) { |
25 | 25 | if ($text === null) { |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public static function transformPHPArrayToPostgresTextArray(array $phpArray) |
62 | 62 | { |
63 | - $transform = function (array $phpArrayToTransform) use (&$transform) { |
|
63 | + $transform = function(array $phpArrayToTransform) use (&$transform) { |
|
64 | 64 | $result = []; |
65 | 65 | foreach ($phpArrayToTransform as $text) { |
66 | 66 | if (is_array($text)) { |