Completed
Pull Request — master (#480)
by Luc
01:55
created
src/Event/ValueObjects/EventStatusType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     private function __construct(string $value)
30 30
     {
31 31
         if (!\in_array($value, self::ALLOWED_VALUES, true)) {
32
-            throw new InvalidArgumentException('Status does not support the value "' . $value . '"');
32
+            throw new InvalidArgumentException('Status does not support the value "'.$value.'"');
33 33
         }
34 34
         $this->value = $value;
35 35
     }
Please login to merge, or discard this patch.
src/Event/ValueObjects/EventStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      */
70 70
     private function ensureTranslationsAreUnique(array $eventStatusReasons): void
71 71
     {
72
-        $languageCodes = \array_map(static function (EventStatusReason $reason) {
72
+        $languageCodes = \array_map(static function(EventStatusReason $reason) {
73 73
             return $reason->getLanguage()->getCode();
74 74
         }, $eventStatusReasons);
75 75
 
Please login to merge, or discard this patch.
src/Calendar.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         $this->endDate = $endDate;
82 82
         $this->openingHours = $openingHours;
83 83
 
84
-        usort($timestamps, function (Timestamp $timestamp, Timestamp $otherTimestamp) {
84
+        usort($timestamps, function(Timestamp $timestamp, Timestamp $otherTimestamp) {
85 85
             return $timestamp->getStartDate() <=> $otherTimestamp->getStartDate();
86 86
         });
87 87
 
@@ -97,14 +97,14 @@  discard block
 block discarded – undo
97 97
     public function serialize(): array
98 98
     {
99 99
         $serializedTimestamps = array_map(
100
-            function (Timestamp $timestamp) {
100
+            function(Timestamp $timestamp) {
101 101
                 return $timestamp->serialize();
102 102
             },
103 103
             $this->timestamps
104 104
         );
105 105
 
106 106
         $serializedOpeningHours = array_map(
107
-            function (OpeningHour $openingHour) {
107
+            function(OpeningHour $openingHour) {
108 108
                 return $openingHour->serialize();
109 109
             },
110 110
             $this->openingHours
@@ -141,13 +141,13 @@  discard block
 block discarded – undo
141 141
             !empty($data['startDate']) ? self::deserializeDateTime($data['startDate']) : null,
142 142
             !empty($data['endDate']) ? self::deserializeDateTime($data['endDate']) : null,
143 143
             !empty($data['timestamps']) ? array_map(
144
-                function ($timestamp) {
144
+                function($timestamp) {
145 145
                     return Timestamp::deserialize($timestamp);
146 146
                 },
147 147
                 $data['timestamps']
148 148
             ) : $defaultTimeStamps,
149 149
             !empty($data['openingHours']) ? array_map(
150
-                function ($openingHour) {
150
+                function($openingHour) {
151 151
                     return OpeningHour::deserialize($openingHour);
152 152
                 },
153 153
                 $data['openingHours']
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 
283 283
         if ($calendar instanceof CalendarWithSubEvents) {
284 284
             $timestamps = array_map(
285
-                function (DateRange $dateRange) {
285
+                function(DateRange $dateRange) {
286 286
                     return Timestamp::fromUdb3ModelDateRange($dateRange);
287 287
                 },
288 288
                 $calendar->getSubEvents()->to[]
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 
292 292
         if ($calendar instanceof CalendarWithOpeningHours) {
293 293
             $openingHours = array_map(
294
-                function (Udb3ModelOpeningHour $openingHour) {
294
+                function(Udb3ModelOpeningHour $openingHour) {
295 295
                     return OpeningHour::fromUdb3ModelOpeningHour($openingHour);
296 296
                 },
297 297
                 $calendar->getOpeningHours()->to[]
Please login to merge, or discard this patch.