Completed
Pull Request — master (#306)
by Luc
10:34
created
src/Calendar.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         array $openingHours = array()
56 56
     ) {
57 57
         if (($type->is(CalendarType::MULTIPLE()) || $type->is(CalendarType::SINGLE())) && empty($startDate)) {
58
-            throw new \UnexpectedValueException('Start date can not be empty for calendar type: ' . $type . '.');
58
+            throw new \UnexpectedValueException('Start date can not be empty for calendar type: '.$type.'.');
59 59
         }
60 60
 
61 61
         if ($type->is(CalendarType::PERIODIC()) && (empty($startDate) || empty($endDate))) {
@@ -83,14 +83,14 @@  discard block
 block discarded – undo
83 83
     public function serialize()
84 84
     {
85 85
         $serializedTimestamps = array_map(
86
-            function (Timestamp $timestamp) {
86
+            function(Timestamp $timestamp) {
87 87
                 return $timestamp->serialize();
88 88
             },
89 89
             $this->timestamps
90 90
         );
91 91
 
92 92
         $serializedOpeningHours = array_map(
93
-            function (OpeningHour $openingHour) {
93
+            function(OpeningHour $openingHour) {
94 94
                 return $openingHour->serialize();
95 95
             },
96 96
             $this->openingHours
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
             !empty($data['startDate']) ? self::deserializeDateTime($data['startDate']) : null,
119 119
             !empty($data['endDate']) ? self::deserializeDateTime($data['endDate']) : null,
120 120
             !empty($data['timestamps']) ? array_map(
121
-                function ($timestamp) {
121
+                function($timestamp) {
122 122
                     return Timestamp::deserialize($timestamp);
123 123
                 },
124 124
                 $data['timestamps']
125 125
             ) : [],
126 126
             !empty($data['openingHours']) ? array_map(
127
-                function ($openingHour) {
127
+                function($openingHour) {
128 128
                     return OpeningHour::deserialize($openingHour);
129 129
                 },
130 130
                 $data['openingHours']
Please login to merge, or discard this patch.
src/Calendar/DayOfWeekCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public function getDaysOfWeek()
48 48
     {
49 49
         return array_map(
50
-            function ($dayOfWeek) {
50
+            function($dayOfWeek) {
51 51
                 return DayOfWeek::fromNative($dayOfWeek);
52 52
             },
53 53
             $this->daysOfWeek
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         return array_reduce(
63 63
             $data,
64
-            function (DayOfWeekCollection $collection, $dayOfWeek) {
64
+            function(DayOfWeekCollection $collection, $dayOfWeek) {
65 65
                  return $collection->addDayOfWeek(DayOfWeek::fromNative($dayOfWeek));
66 66
             },
67 67
             new DayOfWeekCollection()
Please login to merge, or discard this patch.
src/CalendarFactory.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
         if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_PeriodList) {
41 41
             /** @var \CultureFeed_Cdb_Data_Calendar_Period $period */
42 42
             $period = $cdbCalendar->current();
43
-            $startDateString = $period->getDateFrom() . 'T00:00:00';
43
+            $startDateString = $period->getDateFrom().'T00:00:00';
44 44
         } else if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_TimestampList) {
45 45
             /** @var \CultureFeed_Cdb_Data_Calendar_Timestamp $timestamp */
46 46
             $timestamp = $cdbCalendar->current();
47 47
             if ($timestamp->getStartTime()) {
48
-                $startDateString = $timestamp->getDate() . 'T' . substr($timestamp->getStartTime(), 0, 5) . ':00';
48
+                $startDateString = $timestamp->getDate().'T'.substr($timestamp->getStartTime(), 0, 5).':00';
49 49
             } else {
50
-                $startDateString = $timestamp->getDate() . 'T00:00:00';
50
+                $startDateString = $timestamp->getDate().'T00:00:00';
51 51
             }
52 52
         }
53 53
         $startDate = !empty($startDateString) ? DateTimeFactory::dateTimeFromDateString($startDateString) : null;
@@ -60,17 +60,17 @@  discard block
 block discarded – undo
60 60
         if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_PeriodList) {
61 61
             /** @var \CultureFeed_Cdb_Data_Calendar_Period $period */
62 62
             $period = $cdbCalendar->current();
63
-            $endDateString = $period->getDateTo() . 'T00:00:00';
63
+            $endDateString = $period->getDateTo().'T00:00:00';
64 64
         } else if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_TimestampList) {
65 65
             $firstTimestamp = $cdbCalendar->current();
66 66
             /** @var \CultureFeed_Cdb_Data_Calendar_Timestamp $timestamp */
67 67
             $cdbCalendarAsArray = iterator_to_array($cdbCalendar);
68 68
             $timestamp = iterator_count($cdbCalendar) > 1 ? end($cdbCalendarAsArray) : $firstTimestamp;
69 69
             if ($timestamp->getEndTime()) {
70
-                $endDateString = $timestamp->getDate() . 'T' . $timestamp->getEndTime();
70
+                $endDateString = $timestamp->getDate().'T'.$timestamp->getEndTime();
71 71
             } else {
72 72
                 $endTime = $timestamp->getStartTime() ? $timestamp->getStartTime() : '00:00:00';
73
-                $endDateString = $timestamp->getDate() . 'T' . $endTime;
73
+                $endDateString = $timestamp->getDate().'T'.$endTime;
74 74
             }
75 75
         }
76 76
         $endDate = !empty($endDateString) ? DateTimeFactory::dateTimeFromDateString($endDateString) : null;
@@ -88,12 +88,12 @@  discard block
 block discarded – undo
88 88
                 $cdbCalendar->next();
89 89
 
90 90
                 $startTime = $timestamp->getStartTime() ? $timestamp->getStartTime() : '00:00:00';
91
-                $startDateString = $timestamp->getDate() . 'T' . $startTime;
91
+                $startDateString = $timestamp->getDate().'T'.$startTime;
92 92
 
93 93
                 if ($timestamp->getEndTime()) {
94
-                    $endDateString = $timestamp->getDate() . 'T' . $timestamp->getEndTime();
94
+                    $endDateString = $timestamp->getDate().'T'.$timestamp->getEndTime();
95 95
                 } else {
96
-                    $endDateString = $timestamp->getDate() . 'T' . $startTime;
96
+                    $endDateString = $timestamp->getDate().'T'.$startTime;
97 97
                 }
98 98
 
99 99
                 $timestamp = $this->createTimestamp(
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
             }
111 111
 
112 112
             $periods = array_map(
113
-                function (array $periodParts) {
113
+                function(array $periodParts) {
114 114
                     $firstPart = array_shift($periodParts);
115 115
                     $lastPart = array_pop($periodParts);
116 116
                     return new Timestamp(
Please login to merge, or discard this patch.
src/Calendar/CalendarConverter.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     public function toCdbCalendar(CalendarInterface $calendar)
25 25
     {
26 26
         $weekScheme = $this->getWeekScheme($calendar);
27
-        $calendarType = (string) $calendar->getType();
27
+        $calendarType = (string)$calendar->getType();
28 28
 
29 29
         switch ($calendarType) {
30 30
             case CalendarType::MULTIPLE:
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     private function countTimestamps(CultureFeed_Cdb_Data_Calendar_TimestampList $timestamps)
84 84
     {
85
-        $numberOfTimestamps =  iterator_count($timestamps);
85
+        $numberOfTimestamps = iterator_count($timestamps);
86 86
         $timestamps->rewind();
87 87
 
88 88
         return $numberOfTimestamps;
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
             foreach ($openingHours as $openingHour) {
117 117
                 // In CDB2 every day needs to be a seperate entry.
118 118
                 if (is_array($openingHour)) {
119
-                    $openingHour = (object) $openingHour;
119
+                    $openingHour = (object)$openingHour;
120 120
                 }
121 121
                 foreach ($openingHour->getDayOfWeekCollection()->getDaysOfWeek() as $day) {
122 122
                     $openingTimesPerDay[$day->toNative()][] = new CultureFeed_Cdb_Data_Calendar_OpeningTime(
123
-                        $openingHour->getOpens()->toNativeString() . ':00',
124
-                        $openingHour->getCloses()->toNativeString() . ':00'
123
+                        $openingHour->getOpens()->toNativeString().':00',
124
+                        $openingHour->getCloses()->toNativeString().':00'
125 125
                     );
126 126
                 }
127 127
             }
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 
200 200
             $days = iterator_to_array($period->getDatePeriod('1 DAY'));
201 201
             $fillerTimestamps = array_map(
202
-                function (DateTimeInterface $dateTime) use ($index) {
202
+                function(DateTimeInterface $dateTime) use ($index) {
203 203
                     return new CultureFeed_Cdb_Data_Calendar_Timestamp(
204 204
                         $dateTime->format('Y-m-d'),
205 205
                         $this->createIndexedTimeString($index)
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 
211 211
             $newCalendar = array_reduce(
212 212
                 array_merge([$startTimestamp], $fillerTimestamps, [$endTimestamp]),
213
-                function (CultureFeed_Cdb_Data_Calendar_TimestampList $calendar, $timestamp) {
213
+                function(CultureFeed_Cdb_Data_Calendar_TimestampList $calendar, $timestamp) {
214 214
                     $calendar->add($timestamp);
215 215
                     return $calendar;
216 216
                 },
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
         }
234 234
 
235 235
         $time = is_int($index)
236
-            ? $timestamp->format('H:i') . ':' . str_pad((string) $index, 2, '0', STR_PAD_LEFT)
236
+            ? $timestamp->format('H:i').':'.str_pad((string)$index, 2, '0', STR_PAD_LEFT)
237 237
             : $timestamp->format('H:i:s');
238 238
 
239 239
         return $time;
@@ -245,6 +245,6 @@  discard block
 block discarded – undo
245 245
      */
246 246
     private function createIndexedTimeString($index)
247 247
     {
248
-        return '00:00:' . str_pad((string) $index, 2, '0', STR_PAD_LEFT);
248
+        return '00:00:'.str_pad((string)$index, 2, '0', STR_PAD_LEFT);
249 249
     }
250 250
 }
Please login to merge, or discard this patch.
src/Label/ReadModels/Relations/Repository/Doctrine/DBALWriteRepository.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
     ) {
48 48
         $queryBuilder = $this->createQueryBuilder()
49 49
             ->delete($this->getTableName())
50
-            ->where(SchemaConfigurator::LABEL_NAME . ' = ?')
51
-            ->andWhere(SchemaConfigurator::RELATION_ID . ' = ?')
50
+            ->where(SchemaConfigurator::LABEL_NAME.' = ?')
51
+            ->andWhere(SchemaConfigurator::RELATION_ID.' = ?')
52 52
             ->setParameters([$labelName->toNative(), $relationId->toNative()]);
53 53
 
54 54
         $this->executeTransactional($queryBuilder);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $queryBuilder = $this->createQueryBuilder()
63 63
             ->delete($this->getTableName())
64
-            ->where(SchemaConfigurator::RELATION_ID . ' = ?')
64
+            ->where(SchemaConfigurator::RELATION_ID.' = ?')
65 65
             ->setParameters([$relationId->toNative()]);
66 66
 
67 67
         $this->executeTransactional($queryBuilder);
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
     {
75 75
         $queryBuilder = $this->createQueryBuilder()
76 76
             ->delete($this->getTableName())
77
-            ->where(SchemaConfigurator::RELATION_ID . ' = :relationId')
78
-            ->andWhere(SchemaConfigurator::IMPORTED . ' = :imported')
77
+            ->where(SchemaConfigurator::RELATION_ID.' = :relationId')
78
+            ->andWhere(SchemaConfigurator::IMPORTED.' = :imported')
79 79
             ->setParameters(
80 80
                 [
81 81
                     ':relationId' => $relationId->toNative(),
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     private function executeTransactional(QueryBuilder $queryBuilder)
93 93
     {
94
-        $this->getConnection()->transactional(function () use ($queryBuilder) {
94
+        $this->getConnection()->transactional(function() use ($queryBuilder) {
95 95
             $queryBuilder->execute();
96 96
         });
97 97
     }
Please login to merge, or discard this patch.
src/Organizer/OrganizerLDProjector.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 
177 177
         $this->setMainLanguage($jsonLD, new Language('nl'));
178 178
 
179
-        $jsonLD->url = (string) $organizerCreated->getWebsite();
179
+        $jsonLD->url = (string)$organizerCreated->getWebsite();
180 180
 
181 181
         $jsonLD->name = [
182 182
             $this->getMainLanguage($jsonLD)->getCode() => $organizerCreated->getTitle()
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         $document = $this->repository->get($organizerId);
207 207
 
208 208
         $jsonLD = $document->getBody();
209
-        $jsonLD->url = (string) $websiteUpdated->getWebsite();
209
+        $jsonLD->url = (string)$websiteUpdated->getWebsite();
210 210
 
211 211
         $this->repository->save($document->withBody($jsonLD));
212 212
     }
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
         $labelsProperty = $labelAdded->getLabel()->isVisible() ? 'labels' : 'hiddenLabels';
306 306
 
307 307
         $labels = isset($jsonLD->{$labelsProperty}) ? $jsonLD->{$labelsProperty} : [];
308
-        $label = (string) $labelAdded->getLabel();
308
+        $label = (string)$labelAdded->getLabel();
309 309
 
310 310
         $labels[] = $label;
311 311
         $jsonLD->{$labelsProperty} = array_unique($labels);
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
             if (isset($jsonLD->{$labelsProperty}) && is_array($jsonLD->{$labelsProperty})) {
330 330
                 $jsonLD->{$labelsProperty} = array_filter(
331 331
                     $jsonLD->{$labelsProperty},
332
-                    function ($label) use ($labelRemoved) {
332
+                    function($label) use ($labelRemoved) {
333 333
                         return !$labelRemoved->getLabel()->equals(
334 334
                             new Label($label)
335 335
                         );
Please login to merge, or discard this patch.