Passed
Push — update-dev-dependencies ( 686ecc...97cfad )
by Martin
05:12 queued 03:30
created
src/MartinGeorgiev/Utils/DataStructure.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)) {
Please login to merge, or discard this patch.