Passed
Pull Request — main (#161)
by Daniel
06:15 queued 02:27
created
src/Serializer/Normalizer/PageDataNormalizer.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
         $this->propertyAccessor = PropertyAccess::createPropertyAccessor();
43 43
     }
44 44
 
45
-    public function normalize($object, $format = null, array $context = []): float|array|\ArrayObject|bool|int|string|null
45
+    public function normalize($object, $format = null, array $context = []): float | array | \ArrayObject | bool | int | string | null
46 46
     {
47 47
         $context[self::ALREADY_CALLED][] = $this->propertyAccessor->getValue($object, 'id');
48 48
         $metadata = $this->pageDataMetadataFactory->create(\get_class($object));
Please login to merge, or discard this patch.
src/Serializer/Normalizer/PublishableNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         $this->propertyAccessor = PropertyAccess::createPropertyAccessor();
68 68
     }
69 69
 
70
-    public function normalize($object, $format = null, array $context = []): float|array|\ArrayObject|bool|int|string|null
70
+    public function normalize($object, $format = null, array $context = []): float | array | \ArrayObject | bool | int | string | null
71 71
     {
72 72
         $context[self::ALREADY_CALLED][] = $this->propertyAccessor->getValue($object, 'id');
73 73
 
Please login to merge, or discard this patch.
src/Serializer/Normalizer/CollectionNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         $this->propertyAccessor = PropertyAccess::createPropertyAccessor();
68 68
     }
69 69
 
70
-    public function normalize($object, $format = null, array $context = []): float|array|\ArrayObject|bool|int|string|null
70
+    public function normalize($object, $format = null, array $context = []): float | array | \ArrayObject | bool | int | string | null
71 71
     {
72 72
         $context[self::ALREADY_CALLED][] = $this->propertyAccessor->getValue($object, 'id');
73 73
 
Please login to merge, or discard this patch.
src/Serializer/Normalizer/MetadataNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         return !\in_array($id, $context[self::ALREADY_CALLED], true);
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
         $context[self::ALREADY_CALLED][] = $this->propertyAccessor->getValue($object, 'id');
69 69
         $metadataContext = $context;
Please login to merge, or discard this patch.
src/Serializer/Normalizer/PersistedNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         $this->propertyAccessor = PropertyAccess::createPropertyAccessor();
68 68
     }
69 69
 
70
-    public function normalize($object, $format = null, array $context = []): float|array|\ArrayObject|bool|int|string|null
70
+    public function normalize($object, $format = null, array $context = []): float | array | \ArrayObject | bool | int | string | null
71 71
     {
72 72
         $context[self::ALREADY_CALLED][] = $this->propertyAccessor->getValue($object, 'id');
73 73
 
Please login to merge, or discard this patch.
src/Mercure/MercureResourcePublisher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@
 block discarded – undo
253 253
     /**
254 254
      * @param string|string[] $iri
255 255
      */
256
-    private function buildUpdate(string|array $iri, string $data, array $options): Update
256
+    private function buildUpdate(string | array $iri, string $data, array $options): Update
257 257
     {
258 258
         return new Update($iri, $data, $options['private'] ?? false, $options['id'] ?? null, $options['type'] ?? null, $options['retry'] ?? null);
259 259
     }
Please login to merge, or discard this patch.
src/HttpCache/HttpCachePurger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
             // clear cache of anything containing this item
68 68
             $this->collectItem($entity);
69
-        } catch (OperationNotFoundException|InvalidArgumentException $e) {
69
+        } catch (OperationNotFoundException | InvalidArgumentException $e) {
70 70
         }
71 71
     }
72 72
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         try {
76 76
             $iri = $this->iriConverter->getIriFromResource($item);
77 77
             $this->collectIri($iri);
78
-        } catch (InvalidArgumentException|RuntimeException $e) {
78
+        } catch (InvalidArgumentException | RuntimeException $e) {
79 79
         }
80 80
     }
81 81
 
Please login to merge, or discard this patch.
src/DataProvider/StateProvider/PageDataMetadataStateProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
     }
30 30
 
31
-    public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
31
+    public function provide(Operation $operation, array $uriVariables = [], array $context = []): object | array | null
32 32
     {
33 33
         if ($operation instanceof CollectionOperationInterface) {
34 34
             return $this->pageDataMetadataProvider->createAll();
Please login to merge, or discard this patch.
src/EventListener/Doctrine/PropagateUpdatesListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 class PropagateUpdatesListener
28 28
 {
29 29
     private PropertyAccessor $propertyAccessor;
30
-    private ObjectRepository|EntityRepository $collectionRepository;
30
+    private ObjectRepository | EntityRepository $collectionRepository;
31 31
     private \SplObjectStorage $updatedResources;
32 32
     private array $pageDataPropertiesChanged = [];
33 33
     private array $updatedCollectionClassToIriMapping = [];
Please login to merge, or discard this patch.