Test Failed
Push — main ( a7674f...eefe5e )
by Daniel
05:03
created
src/Serializer/Normalizer/DataUriNormalizer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
     use DenormalizerAwareTrait;
38 38
     use NormalizerAwareTrait;
39 39
 
40
-    private NormalizerInterface|SymfonyDataUriNormalizer $decorated;
40
+    private NormalizerInterface | SymfonyDataUriNormalizer $decorated;
41 41
 
42
-    public function __construct(NormalizerInterface|SymfonyDataUriNormalizer $decorated)
42
+    public function __construct(NormalizerInterface | SymfonyDataUriNormalizer $decorated)
43 43
     {
44 44
         $this->decorated = $decorated;
45 45
     }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         return $this->decorated->supportsDenormalization($data, $type, $format);
64 64
     }
65 65
 
66
-    public function normalize($object, $format = null, array $context = []): float|array|\ArrayObject|bool|int|string|null
66
+    public function normalize($object, $format = null, array $context = []): float | array | \ArrayObject | bool | int | string | null
67 67
     {
68 68
         return $this->decorated->normalize($object, $format, $context);
69 69
     }
Please login to merge, or discard this patch.
src/ApiPlatform/Serializer/VersionedDocumentationNormalizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
  */
26 26
 class VersionedDocumentationNormalizer implements NormalizerInterface, CacheableSupportsMethodInterface
27 27
 {
28
-    private NormalizerInterface|DocumentationNormalizer $decorated;
28
+    private NormalizerInterface | DocumentationNormalizer $decorated;
29 29
 
30
-    public function __construct(NormalizerInterface|DocumentationNormalizer $decorated)
30
+    public function __construct(NormalizerInterface | DocumentationNormalizer $decorated)
31 31
     {
32 32
         $this->decorated = $decorated;
33 33
     }
Please login to merge, or discard this patch.