Completed
Pull Request — master (#454)
by Jonas
05:25 queued 02:08
created
src/Event/ReadModel/JSONLD/EventJsonDocumentLanguageAnalyzer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,14 +61,14 @@
 block discarded – undo
61 61
         $mainLanguage = isset($body->mainLanguage) ? $body->mainLanguage : 'nl';
62 62
 
63 63
         if (isset($body->bookingInfo->urlLabel) && is_string($body->bookingInfo->urlLabel)) {
64
-            $body->bookingInfo->urlLabel = (object) [
64
+            $body->bookingInfo->urlLabel = (object)[
65 65
                 $mainLanguage => $body->bookingInfo->urlLabel,
66 66
             ];
67 67
         }
68 68
 
69 69
         if (isset($body->priceInfo) && is_array($body->priceInfo) && is_string($body->priceInfo[0]->name)) {
70 70
             foreach ($body->priceInfo as $priceInfo) {
71
-                $priceInfo->name = (object) [
71
+                $priceInfo->name = (object)[
72 72
                     $mainLanguage => $priceInfo->name,
73 73
                 ];
74 74
             }
Please login to merge, or discard this patch.
src/Label/ReadModels/JSON/Repository/Doctrine/DBALReadRepository.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     public function getByUuid(UUID $uuid)
55 55
     {
56 56
         $aliases = $this->getAliases();
57
-        $whereId = SchemaConfigurator::UUID_COLUMN . ' = ?';
57
+        $whereId = SchemaConfigurator::UUID_COLUMN.' = ?';
58 58
 
59 59
         $queryBuilder = $this->createQueryBuilder()->select($aliases)
60 60
             ->from($this->getTableName()->toNative())
@@ -215,15 +215,15 @@  discard block
 block discarded – undo
215 215
     private function createUserLabelsSubQuery(Query $query)
216 216
     {
217 217
         return $this->createQueryBuilder()
218
-            ->select('DISTINCT ' . LabelRolesSchemaConfigurator::LABEL_ID_COLUMN)
218
+            ->select('DISTINCT '.LabelRolesSchemaConfigurator::LABEL_ID_COLUMN)
219 219
             ->from($this->userRolesTableName->toNative(), 'ur')
220 220
             ->innerJoin(
221 221
                 'ur',
222 222
                 $this->labelRolesTableName->toNative(),
223 223
                 'lr',
224
-                'ur.' . PermissionsSchemaConfigurator::ROLE_ID_COLUMN . ' = lr.' . LabelRolesSchemaConfigurator::ROLE_ID_COLUMN
224
+                'ur.'.PermissionsSchemaConfigurator::ROLE_ID_COLUMN.' = lr.'.LabelRolesSchemaConfigurator::ROLE_ID_COLUMN
225 225
             )
226
-            ->where('ur.' . PermissionsSchemaConfigurator::USER_ID_COLUMN . '= :' . PermissionsSchemaConfigurator::USER_ID_COLUMN);
226
+            ->where('ur.'.PermissionsSchemaConfigurator::USER_ID_COLUMN.'= :'.PermissionsSchemaConfigurator::USER_ID_COLUMN);
227 227
     }
228 228
 
229 229
     /**
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
     {
250 250
         return $queryBuilder->expr()->like(
251 251
             SchemaConfigurator::NAME_COLUMN,
252
-            ':' . SchemaConfigurator::NAME_COLUMN
252
+            ':'.SchemaConfigurator::NAME_COLUMN
253 253
         );
254 254
     }
255 255
 
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      */
260 260
     private function createLikeParameter(Query $query)
261 261
     {
262
-        return '%' . $query->getValue()->toNative() . '%';
262
+        return '%'.$query->getValue()->toNative().'%';
263 263
     }
264 264
 
265 265
     /**
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
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     public function toCdbCalendar(CalendarInterface $calendar)
41 41
     {
42 42
         $weekScheme = $this->getWeekScheme($calendar);
43
-        $calendarType = (string) $calendar->getType();
43
+        $calendarType = (string)$calendar->getType();
44 44
 
45 45
         switch ($calendarType) {
46 46
             case CalendarType::MULTIPLE:
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     private function countTimestamps(CultureFeed_Cdb_Data_Calendar_TimestampList $timestamps)
101 101
     {
102
-        $numberOfTimestamps =  iterator_count($timestamps);
102
+        $numberOfTimestamps = iterator_count($timestamps);
103 103
         $timestamps->rewind();
104 104
 
105 105
         return $numberOfTimestamps;
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
             foreach ($openingHours as $openingHour) {
134 134
                 // In CDB2 every day needs to be a seperate entry.
135 135
                 if (is_array($openingHour)) {
136
-                    $openingHour = (object) $openingHour;
136
+                    $openingHour = (object)$openingHour;
137 137
                 }
138 138
                 foreach ($openingHour->getDayOfWeekCollection()->getDaysOfWeek() as $day) {
139 139
                     $openingTimesPerDay[$day->toNative()][] = new CultureFeed_Cdb_Data_Calendar_OpeningTime(
140
-                        $openingHour->getOpens()->toNativeString() . ':00',
141
-                        $openingHour->getCloses()->toNativeString() . ':00'
140
+                        $openingHour->getOpens()->toNativeString().':00',
141
+                        $openingHour->getCloses()->toNativeString().':00'
142 142
                     );
143 143
                 }
144 144
             }
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
             } else {
222 222
                 $days = iterator_to_array($period->getDatePeriod('1 DAY'));
223 223
                 $fillerTimestamps = array_map(
224
-                    function (DateTimeInterface $dateTime) use ($index) {
224
+                    function(DateTimeInterface $dateTime) use ($index) {
225 225
                         return new CultureFeed_Cdb_Data_Calendar_Timestamp(
226 226
                             $dateTime->format('Y-m-d'),
227 227
                             $this->createIndexedTimeString($index)
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 
234 234
             $newCalendar = array_reduce(
235 235
                 array_merge([$startTimestamp], $fillerTimestamps, [$endTimestamp]),
236
-                function (CultureFeed_Cdb_Data_Calendar_TimestampList $calendar, $timestamp) {
236
+                function(CultureFeed_Cdb_Data_Calendar_TimestampList $calendar, $timestamp) {
237 237
                     $calendar->add($timestamp);
238 238
                     return $calendar;
239 239
                 },
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
         }
257 257
 
258 258
         $time = is_int($index)
259
-            ? $timestamp->format('H:i') . ':' . str_pad((string) $index, 2, '0', STR_PAD_LEFT)
259
+            ? $timestamp->format('H:i').':'.str_pad((string)$index, 2, '0', STR_PAD_LEFT)
260 260
             : $timestamp->format('H:i:s');
261 261
 
262 262
         return $time;
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
      */
269 269
     private function createIndexedTimeString($index)
270 270
     {
271
-        return '00:00:' . str_pad((string) $index, 2, '0', STR_PAD_LEFT);
271
+        return '00:00:'.str_pad((string)$index, 2, '0', STR_PAD_LEFT);
272 272
     }
273 273
 
274 274
     /**
Please login to merge, or discard this patch.
src/BookingInfo.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@
 block discarded – undo
237 237
     }
238 238
 
239 239
     /**
240
-     * @param $string
240
+     * @param string|null $string
241 241
      * @return null|string
242 242
      */
243 243
     private function castEmptyStringToNull($string)
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -116,9 +116,9 @@
 block discarded – undo
116 116
     {
117 117
         $serialized = array_filter(
118 118
             [
119
-              'phone' => $this->phone,
120
-              'email' => $this->email,
121
-              'url' => $this->url,
119
+                'phone' => $this->phone,
120
+                'email' => $this->email,
121
+                'url' => $this->url,
122 122
             ]
123 123
         );
124 124
 
Please login to merge, or discard this patch.
src/Storage/DBALPurgeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $this->connection->exec($sql);
43 43
 
44 44
         if ($platform instanceof SqlitePlatform) {
45
-            $sql = 'UPDATE SQLITE_SEQUENCE SET SEQ=0 WHERE NAME=' . $this->connection->quoteIdentifier($this->tableName);
45
+            $sql = 'UPDATE SQLITE_SEQUENCE SET SEQ=0 WHERE NAME='.$this->connection->quoteIdentifier($this->tableName);
46 46
             $this->connection->exec($sql);
47 47
         }
48 48
     }
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/RelatedEventLDProjector.php 2 patches
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -98,26 +98,43 @@
 block discarded – undo
98 98
         }
99 99
     }
100 100
 
101
+    /**
102
+     * @param string $eventId
103
+     */
101 104
     private function updateEmbeddedOrganizer($eventId, $organizerJSONLD)
102 105
     {
103 106
         $this->updateJSONLD(
104 107
             $eventId,
108
+
109
+            /**
110
+             * @param string $eventLd
111
+             */
105 112
             function ($eventLd) use ($organizerJSONLD) {
106 113
                 $eventLd->organizer = $organizerJSONLD;
107 114
             }
108 115
         );
109 116
     }
110 117
 
118
+    /**
119
+     * @param string $eventId
120
+     */
111 121
     private function updatedEmbeddedLocation($eventId, $placeJSONLD)
112 122
     {
113 123
         $this->updateJSONLD(
114 124
             $eventId,
125
+
126
+            /**
127
+             * @param string $eventLd
128
+             */
115 129
             function ($eventLd) use ($placeJSONLD) {
116 130
                 $eventLd->location = $placeJSONLD;
117 131
             }
118 132
         );
119 133
     }
120 134
 
135
+    /**
136
+     * @param \Closure $callback
137
+     */
121 138
     private function updateJSONLD($eventId, $callback)
122 139
     {
123 140
         $document = $this->repository->get($eventId);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     {
103 103
         $this->updateJSONLD(
104 104
             $eventId,
105
-            function ($eventLd) use ($organizerJSONLD) {
105
+            function($eventLd) use ($organizerJSONLD) {
106 106
                 $eventLd->organizer = $organizerJSONLD;
107 107
             }
108 108
         );
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     {
113 113
         $this->updateJSONLD(
114 114
             $eventId,
115
-            function ($eventLd) use ($placeJSONLD) {
115
+            function($eventLd) use ($placeJSONLD) {
116 116
                 $eventLd->location = $placeJSONLD;
117 117
             }
118 118
         );
Please login to merge, or discard this patch.
src/EventSourcing/DomainMessageBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
             )
89 89
         );
90 90
 
91
-        $message =  new DomainMessage(
91
+        $message = new DomainMessage(
92 92
             $this->id ?? UUID::generateAsString(),
93 93
             $this->playhead ?? 1,
94 94
             $finalMetaData,
Please login to merge, or discard this patch.
src/SavedSearches/UDB3SavedSearchRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
     ): void {
91 91
         $queryBuilder = $this->connection->createQueryBuilder()
92 92
             ->delete($this->tableName->toNative())
93
-            ->where(SchemaConfigurator::USER . ' = ?')
94
-            ->andWhere(SchemaConfigurator::ID . ' = ?')
93
+            ->where(SchemaConfigurator::USER.' = ?')
94
+            ->andWhere(SchemaConfigurator::ID.' = ?')
95 95
             ->setParameters(
96 96
                 [
97 97
                     $userId->toNative(),
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $queryBuilder = $this->connection->createQueryBuilder()
111 111
             ->select('*')
112 112
             ->from($this->tableName->toNative())
113
-            ->where(SchemaConfigurator::USER . ' = ?')
113
+            ->where(SchemaConfigurator::USER.' = ?')
114 114
             ->setParameters(
115 115
                 [
116 116
                     $this->userId->toNative(),
Please login to merge, or discard this patch.
src/SavedSearches/Properties/CreatedByQueryString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
 
16 16
         $query = implode(' OR ', $queryParts);
17 17
         if (count($queryParts) > 1) {
18
-            $query = '(' . $query . ')';
18
+            $query = '('.$query.')';
19 19
         }
20
-        $query = 'createdby:' . $query;
20
+        $query = 'createdby:'.$query;
21 21
 
22 22
         parent::__construct($query);
23 23
     }
Please login to merge, or discard this patch.