Passed
Push — boyscout/ci-enforce-code-style ( 7a2b80...7024a9 )
by Martin
02:50
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 = 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
 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.