Completed
Pull Request — master (#264)
by Kristof
04:49
created
src/Media/Image.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -109,11 +109,11 @@
 block discarded – undo
109 109
     public function serialize()
110 110
     {
111 111
         return [
112
-            'media_object_id' => (string) $this->getMediaObjectId(),
113
-            'mime_type' => (string) $this->getMimeType(),
114
-            'description' => (string) $this->getDescription(),
115
-            'copyright_holder' => (string) $this->getCopyrightHolder(),
116
-            'source_location' => (string) $this->getSourceLocation()
112
+            'media_object_id' => (string)$this->getMediaObjectId(),
113
+            'mime_type' => (string)$this->getMimeType(),
114
+            'description' => (string)$this->getDescription(),
115
+            'copyright_holder' => (string)$this->getCopyrightHolder(),
116
+            'source_location' => (string)$this->getSourceLocation()
117 117
         ];
118 118
     }
119 119
 }
Please login to merge, or discard this patch.
src/Media/Events/MediaObjectCreated.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
             'mime_type' => $this->getMimeType()->toNative(),
108 108
             'description' => $this->getDescription()->toNative(),
109 109
             'copyright_holder' => $this->getCopyrightHolder()->toNative(),
110
-            'source_location' => (string) $this->getSourceLocation()
110
+            'source_location' => (string)$this->getSourceLocation()
111 111
         );
112 112
     }
113 113
 
Please login to merge, or discard this patch.
src/Offer/Events/AbstractLabelEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function serialize()
33 33
     {
34 34
         return parent::serialize() + array(
35
-            'label' => (string) $this->label,
35
+            'label' => (string)$this->label,
36 36
         );
37 37
     }
38 38
 
Please login to merge, or discard this patch.
src/Offer/ReadModel/JSONLD/OfferUpdate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public static function calendar(Calendar $calendar)
25 25
     {
26
-        $offerCalenderUpdate = function ($body) use ($calendar) {
26
+        $offerCalenderUpdate = function($body) use ($calendar) {
27 27
             // Purge any existing calendar data
28 28
             unset(
29 29
                 $body->calendarType,
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
                 $body->openingHours
34 34
             );
35 35
 
36
-            return (object) array_merge(
37
-                (array) $body,
36
+            return (object)array_merge(
37
+                (array)$body,
38 38
                 $calendar->toJsonLd()
39 39
             );
40 40
         };
Please login to merge, or discard this patch.
src/Place/ReadModel/JSONLD/PlaceLDProjector.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         $jsonLD->address = $placeCreated->getAddress()->toJsonLd();
161 161
 
162 162
         $calendarJsonLD = $placeCreated->getCalendar()->toJsonLd();
163
-        $jsonLD = (object) array_merge((array) $jsonLD, $calendarJsonLD);
163
+        $jsonLD = (object)array_merge((array)$jsonLD, $calendarJsonLD);
164 164
 
165 165
         $eventType = $placeCreated->getEventType();
166 166
         $jsonLD->terms = [
@@ -214,8 +214,8 @@  discard block
 block discarded – undo
214 214
         $jsonLD->address = $majorInfoUpdated->getAddress()->toJsonLd();
215 215
 
216 216
         // Remove old theme and event type.
217
-        $jsonLD->terms = array_filter($jsonLD->terms, function ($term) {
218
-            return $term->domain !== EventType::DOMAIN &&  $term->domain !== Theme::DOMAIN;
217
+        $jsonLD->terms = array_filter($jsonLD->terms, function($term) {
218
+            return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN;
219 219
         });
220 220
 
221 221
         $eventType = $majorInfoUpdated->getEventType();
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
         // Remove all old facilities + get numeric keys.
362 362
         $terms = array_values(array_filter(
363 363
             $terms,
364
-            function ($term) {
364
+            function($term) {
365 365
                 return $term->domain !== Facility::DOMAIN;
366 366
             }
367 367
         ));
Please login to merge, or discard this patch.
src/Offer/Events/Image/AbstractImageUpdated.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -79,10 +79,10 @@
 block discarded – undo
79 79
      */
80 80
     public function serialize()
81 81
     {
82
-        return parent::serialize() +  array(
83
-            'media_object_id' => (string) $this->mediaObjectId,
84
-            'description' => (string) $this->description,
85
-            'copyright_holder' => (string) $this->copyrightHolder
82
+        return parent::serialize() + array(
83
+            'media_object_id' => (string)$this->mediaObjectId,
84
+            'description' => (string)$this->description,
85
+            'copyright_holder' => (string)$this->copyrightHolder
86 86
         );
87 87
     }
88 88
 
Please login to merge, or discard this patch.
src/Variations/DefaultOfferVariationService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     public function editDescription(Id $id, Description $description)
70 70
     {
71 71
         /** @var EventVariation $variation */
72
-        $variation = $this->eventVariationRepository->load((string) $id);
72
+        $variation = $this->eventVariationRepository->load((string)$id);
73 73
 
74 74
         $variation->editDescription($description);
75 75
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     public function deleteEventVariation(Id $id)
83 83
     {
84 84
         /** @var EventVariation $variation */
85
-        $variation = $this->eventVariationRepository->load((string) $id);
85
+        $variation = $this->eventVariationRepository->load((string)$id);
86 86
 
87 87
         $variation->markDeleted();
88 88
 
Please login to merge, or discard this patch.
src/Variations/Model/OfferVariation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     private function guardNotDeleted()
123 123
     {
124 124
         if ($this->isDeleted()) {
125
-            throw new AggregateDeletedException((string) $this->id);
125
+            throw new AggregateDeletedException((string)$this->id);
126 126
         }
127 127
     }
128 128
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public function getAggregateRootId()
150 150
     {
151
-        return (string) $this->id;
151
+        return (string)$this->id;
152 152
     }
153 153
 
154 154
     /**
Please login to merge, or discard this patch.
src/Variations/Model/Events/OfferVariationEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function serialize()
38 38
     {
39 39
         return array(
40
-            'id' => (string) $this->getId(),
40
+            'id' => (string)$this->getId(),
41 41
         );
42 42
     }
43 43
 
Please login to merge, or discard this patch.