Test Setup Failed
Push — ci-pipeline-changes ( c3a70f )
by Martin
02:20
created
src/MartinGeorgiev/Utils/DataStructure.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public static function transformPostgresTextArrayToPHPArray($postgresArray)
21 21
     {
22
-        $transform = static function ($textArrayToTransform) {
22
+        $transform = static function($textArrayToTransform) {
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
 block discarded – undo
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)) {
Please login to merge, or discard this patch.