Passed
Push — float-arrays ( 02f420...1b8dd5 )
by Martin
26:39 queued 11:41
created
src/MartinGeorgiev/Doctrine/DBAL/Types/JsonTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         return $postgresValue;
32 32
     }
33 33
 
34
-    protected function transformFromPostgresJson(string $postgresValue): null|array|bool|float|int|string
34
+    protected function transformFromPostgresJson(string $postgresValue): null | array | bool | float | int | string
35 35
     {
36 36
         // @phpstan-ignore-next-line
37 37
         return \json_decode($postgresValue, true, 512, JSON_THROW_ON_ERROR);
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/DBAL/Types/Jsonb.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      *
43 43
      * @param string|null $value the value to convert
44 44
      */
45
-    public function convertToPHPValue($value, AbstractPlatform $platform): null|array|bool|float|int|string
45
+    public function convertToPHPValue($value, AbstractPlatform $platform): null | array | bool | float | int | string
46 46
     {
47 47
         if ($value === null) {
48 48
             return null;
Please login to merge, or discard this patch.