Completed
Pull Request — master (#429)
by Jonas
03:17
created
src/Offer/Events/AbstractContactPointUpdated.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @return mixed The object instance
41
+     * @return AbstractContactPointUpdated The object instance
42 42
      */
43 43
     public static function deserialize(array $data)
44 44
     {
Please login to merge, or discard this patch.
src/Variations/Model/Properties/DefaultUrlValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     public function validateUrl(Url $url)
49 49
     {
50 50
         $identifier = $this->iriOfferIdentifierFactory->fromIri(
51
-            \ValueObjects\Web\Url::fromNative((string) $url)
51
+            \ValueObjects\Web\Url::fromNative((string)$url)
52 52
         );
53 53
         $offerType = $identifier->getType();
54 54
         $offerId = $identifier->getId();
Please login to merge, or discard this patch.
src/Offer/IriOfferIdentifier.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
     public function jsonSerialize()
67 67
     {
68 68
         return [
69
-            '@id' => (string) $this->iri,
69
+            '@id' => (string)$this->iri,
70 70
             '@type' => $this->type->toNative(),
71 71
         ];
72 72
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         return json_encode(
80 80
             [
81
-                'iri' => (string) $this->iri,
81
+                'iri' => (string)$this->iri,
82 82
                 'id' => $this->id,
83 83
                 'type' => $this->type->toNative(),
84 84
             ]
Please login to merge, or discard this patch.
src/Offer/BulkLabelCommandHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
             $this->externalOfferEditingService->addLabel($offerIdentifier, $label);
92 92
         } catch (\Exception $e) {
93 93
             $logContext = [
94
-                'iri' => (string) $offerIdentifier->getIri(),
94
+                'iri' => (string)$offerIdentifier->getIri(),
95 95
                 'command' => $originalCommandName,
96 96
                 'exception' => get_class($e),
97 97
                 'message' => $e->getMessage(),
Please login to merge, or discard this patch.
src/Variations/ReadModel/JSONLD/Projector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $variationLD = $variation->getBody();
72 72
         $language = 'nl';
73 73
 
74
-        $variationLD->description->$language = (string) $descriptionEdited->getDescription();
74
+        $variationLD->description->$language = (string)$descriptionEdited->getDescription();
75 75
         $this->repository->save($variation->withBody($variationLD));
76 76
     }
77 77
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 
146 146
         // overwrite the description that's already set in the variation
147 147
         if (!$variationLD->description) {
148
-            $variationLD->description = (object) [];
148
+            $variationLD->description = (object)[];
149 149
         }
150 150
         $variationLD->description->nl = (string)$eventVariationCreated->getDescription();
151 151
 
Please login to merge, or discard this patch.
src/Offer/Events/AbstractLabelEvent.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * @param array $data
48
-     * @return mixed The object instance
48
+     * @return AbstractLabelEvent The object instance
49 49
      */
50 50
     public static function deserialize(array $data)
51 51
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function serialize()
39 39
     {
40 40
         return parent::serialize() + array(
41
-            'label' => (string) $this->label,
41
+            'label' => (string)$this->label,
42 42
             'visibility' => $this->label->isVisible(),
43 43
         );
44 44
     }
Please login to merge, or discard this patch.
src/Event/LocalEventService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      * @param string $id
37 37
      *   A string uniquely identifying an event.
38 38
      *
39
-     * @return array
39
+     * @return string
40 40
      *   An event array.
41 41
      *
42 42
      * @throws EventNotFoundException if an event can not be found for the given id
Please login to merge, or discard this patch.
src/Event/ExternalEventService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
             throw new EventNotFoundException();
42 42
         }
43 43
 
44
-        return (string) $response->getBody();
44
+        return (string)$response->getBody();
45 45
     }
46 46
 
47 47
     public function eventsOrganizedByOrganizer($organizerId)
Please login to merge, or discard this patch.
src/Variations/VariationDecoratedEventService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         // If the id is not a valid url we assume it points to the local installation and generate one ourselves.
69 69
         try {
70 70
             $validUrl = \ValueObjects\Web\Url::fromNative($id);
71
-            $url = new Url((string) $validUrl);
71
+            $url = new Url((string)$validUrl);
72 72
         } catch (InvalidNativeArgumentException $e) {
73 73
             $url = new Url(
74 74
                 $this->eventIriGenerator->iri($id)
Please login to merge, or discard this patch.