Completed
Push — master ( 3be0d8...9025e1 )
by Luc
03:16 queued 03:11
created
src/Event/ReadModel/JSONLD/EventLDProjector.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
         $jsonLD->name->{$this->getMainLanguage($jsonLD)->getCode()} = $majorInfoUpdated->getTitle();
541 541
 
542 542
         $jsonLD->location = array(
543
-          '@type' => 'Place',
543
+            '@type' => 'Place',
544 544
         ) + (array)$this->placeJSONLD($majorInfoUpdated->getLocation()->getCdbid());
545 545
 
546 546
         $availableTo = AvailableTo::createFromCalendar($majorInfoUpdated->getCalendar());
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
 
577 577
         $jsonLD->location = [
578 578
             '@type' => 'Place',
579
-         ] + (array) $this->placeJSONLD($locationUpdated->getLocationId()->toNative());
579
+            ] + (array) $this->placeJSONLD($locationUpdated->getLocationId()->toNative());
580 580
 
581 581
         return $document->withBody($jsonLD);
582 582
     }
Please login to merge, or discard this patch.
src/BookingInfo.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -112,12 +112,12 @@
 block discarded – undo
112 112
     {
113 113
         return array_filter(
114 114
             [
115
-              'phone' => $this->phone,
116
-              'email' => $this->email,
117
-              'url' => $this->url,
118
-              'urlLabel' => $this->urlLabel,
119
-              'availabilityStarts' => $this->availabilityStarts,
120
-              'availabilityEnds' => $this->availabilityEnds,
115
+                'phone' => $this->phone,
116
+                'email' => $this->email,
117
+                'url' => $this->url,
118
+                'urlLabel' => $this->urlLabel,
119
+                'availabilityStarts' => $this->availabilityStarts,
120
+                'availabilityEnds' => $this->availabilityEnds,
121 121
             ]
122 122
         );
123 123
     }
Please login to merge, or discard this patch.