Completed
Pull Request — master (#264)
by Kristof
04:49
created
src/StringFilter/StripSourceStringFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public function filter($string)
12 12
     {
13 13
         if (!is_string($string)) {
14
-            throw new \InvalidArgumentException('Argument should be string, got ' . gettype($string) . ' instead.');
14
+            throw new \InvalidArgumentException('Argument should be string, got '.gettype($string).' instead.');
15 15
         }
16 16
 
17 17
         return preg_replace("/(\\n)+/", " ", $string);
Please login to merge, or discard this patch.
src/Label/ReadModels/Relations/Projector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 
186 186
         foreach ($labelCollection->asArray() as $label) {
187 187
             $this->writeRepository->save(
188
-                new LabelName((string) $label),
188
+                new LabelName((string)$label),
189 189
                 $relationType,
190 190
                 $relationId
191 191
             );
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     {
201 201
         $labelRelation = null;
202 202
 
203
-        $labelName = new LabelName((string) $labelEvent->getLabel());
203
+        $labelName = new LabelName((string)$labelEvent->getLabel());
204 204
         $relationType = $this->offerTypeResolver->getRelationType($labelEvent);
205 205
         $relationId = new StringLiteral($labelEvent->getItemId());
206 206
 
Please login to merge, or discard this patch.
src/LabelImporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
         );
16 16
 
17 17
         $visibleLabels = $labelCollection->filter(
18
-            function (Label $label) {
18
+            function(Label $label) {
19 19
                 return $label->isVisible();
20 20
             }
21 21
         )->toStrings();
22 22
 
23 23
         $hiddenLabels = $labelCollection->filter(
24
-            function (Label $label) {
24
+            function(Label $label) {
25 25
                 return !$label->isVisible();
26 26
             }
27 27
         )->toStrings();
Please login to merge, or discard this patch.
src/EventExport/Format/TabularData/TabularDataEventFormatter.php 1 patch
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -173,14 +173,14 @@  discard block
 block discarded – undo
173 173
     protected function columns()
174 174
     {
175 175
         $formatter = $this;
176
-        $contactPoint = function (\stdClass $event) use ($formatter) {
176
+        $contactPoint = function(\stdClass $event) use ($formatter) {
177 177
             return $formatter->contactPoint($event);
178 178
         };
179 179
 
180 180
         return [
181 181
             'id' => [
182 182
                 'name' => 'id',
183
-                'include' => function ($event) {
183
+                'include' => function($event) {
184 184
                     $eventUri = $event->{'@id'};
185 185
                     $uriParts = explode('/', $eventUri);
186 186
                     $eventId = array_pop($uriParts);
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
             ],
192 192
             'name' => [
193 193
                 'name' => 'titel',
194
-                'include' => function ($event) {
194
+                'include' => function($event) {
195 195
                     if ($event->name) {
196 196
                         return reset($event->name);
197 197
                     }
@@ -200,14 +200,14 @@  discard block
 block discarded – undo
200 200
             ],
201 201
             'creator' => [
202 202
                 'name' => 'auteur',
203
-                'include' => function ($event) {
203
+                'include' => function($event) {
204 204
                     return $event->creator;
205 205
                 },
206 206
                 'property' => 'creator'
207 207
             ],
208 208
             'bookingInfo.price' => [
209 209
                 'name' => 'prijs',
210
-                'include' => function ($event) {
210
+                'include' => function($event) {
211 211
                     if (property_exists($event, 'bookingInfo') && is_array($event->bookingInfo)) {
212 212
                         $first = reset($event->bookingInfo);
213 213
                         if (is_object($first) && property_exists($first, 'price')) {
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             ],
220 220
             'kansentarief' => [
221 221
                 'name' => 'kansentarief',
222
-                'include' => function ($event) {
222
+                'include' => function($event) {
223 223
                     $eventUri = $event->{'@id'};
224 224
                     $uriParts = explode('/', $eventUri);
225 225
                     $eventId = array_pop($uriParts);
@@ -228,18 +228,18 @@  discard block
 block discarded – undo
228 228
                     if ($uitpasInfo) {
229 229
                         $uitpasInfo = $this->uitpasInfoFormatter->format($uitpasInfo);
230 230
 
231
-                        $cardSystems = array_reduce($uitpasInfo['prices'], function ($cardSystems, $tariff) {
231
+                        $cardSystems = array_reduce($uitpasInfo['prices'], function($cardSystems, $tariff) {
232 232
                             $cardSystem = isset($cardSystems[$tariff['cardSystem']]) ? $cardSystems[$tariff['cardSystem']] : '';
233 233
                             $cardSystem = empty($cardSystem)
234
-                                ? $tariff['cardSystem'] .': € ' . $tariff['price']
235
-                                : $cardSystem . ' / € ' . $tariff['price'];
234
+                                ? $tariff['cardSystem'].': € '.$tariff['price']
235
+                                : $cardSystem.' / € '.$tariff['price'];
236 236
 
237 237
                             $cardSystems[$tariff['cardSystem']] = $cardSystem;
238 238
                             return $cardSystems;
239 239
                         }, []);
240 240
 
241
-                        $formattedTariffs = array_reduce($cardSystems, function ($tariffs, $cardSystemPrices) {
242
-                            return $tariffs ? $tariffs . ' | ' . $cardSystemPrices : $cardSystemPrices;
241
+                        $formattedTariffs = array_reduce($cardSystems, function($tariffs, $cardSystemPrices) {
242
+                            return $tariffs ? $tariffs.' | '.$cardSystemPrices : $cardSystemPrices;
243 243
                         });
244 244
 
245 245
                         if (!empty($formattedTariffs)) {
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
             ],
252 252
             'bookingInfo.url' => [
253 253
                 'name' => 'ticket link',
254
-                'include' => function ($event) {
254
+                'include' => function($event) {
255 255
                     if (property_exists($event, 'bookingInfo')) {
256 256
                         $first = reset($event->bookingInfo);
257 257
                         if (is_object($first) && property_exists($first, 'url')) {
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
             ],
264 264
             'description' => [
265 265
                 'name' => 'omschrijving',
266
-                'include' => function ($event) {
266
+                'include' => function($event) {
267 267
                     if (property_exists($event, 'description')) {
268 268
                         $description = reset($event->description);
269 269
 
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
             ],
284 284
             'organizer' => [
285 285
                 'name' => 'organisatie',
286
-                'include' => function ($event) {
286
+                'include' => function($event) {
287 287
                     if (property_exists($event, 'organizer') &&
288 288
                         isset($event->organizer->name)
289 289
                     ) {
@@ -294,14 +294,14 @@  discard block
 block discarded – undo
294 294
             ],
295 295
             'calendarSummary' => [
296 296
                 'name' => 'tijdsinformatie',
297
-                'include' => function ($event) {
297
+                'include' => function($event) {
298 298
                     return $event->calendarSummary;
299 299
                 },
300 300
                 'property' => 'calendarSummary'
301 301
             ],
302 302
             'labels' => [
303 303
                 'name' => 'labels',
304
-                'include' => function ($event) {
304
+                'include' => function($event) {
305 305
                     if (isset($event->labels)) {
306 306
                         return implode(';', $event->labels);
307 307
                     }
@@ -310,14 +310,14 @@  discard block
 block discarded – undo
310 310
             ],
311 311
             'typicalAgeRange' => [
312 312
                 'name' => 'leeftijd',
313
-                'include' => function ($event) {
313
+                'include' => function($event) {
314 314
                     return $event->typicalAgeRange;
315 315
                 },
316 316
                 'property' => 'typicalAgeRange'
317 317
             ],
318 318
             'performer' => [
319 319
                 'name' => 'uitvoerders',
320
-                'include' => function ($event) {
320
+                'include' => function($event) {
321 321
                     if (property_exists($event, 'performer')) {
322 322
                         $performerNames = [];
323 323
                         foreach ($event->performer as $performer) {
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
             ],
332 332
             'language' => [
333 333
                 'name' => 'taal van het aanbod',
334
-                'include' => function ($event) {
334
+                'include' => function($event) {
335 335
                     if (property_exists($event, 'language')) {
336 336
                         return implode(';', $event->language);
337 337
                     }
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
             ],
341 341
             'terms.theme' => [
342 342
                 'name' => 'thema',
343
-                'include' => function ($event) {
343
+                'include' => function($event) {
344 344
                     if (property_exists($event, 'terms')) {
345 345
                         foreach ($event->terms as $term) {
346 346
                             if ($term->domain && $term->label && $term->domain == 'theme') {
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
             ],
354 354
             'terms.eventtype' => [
355 355
                 'name' => 'soort aanbod',
356
-                'include' => function ($event) {
356
+                'include' => function($event) {
357 357
                     if (property_exists($event, 'terms')) {
358 358
                         foreach ($event->terms as $term) {
359 359
                             if ($term->domain && $term->label && $term->domain == 'eventtype') {
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
             ],
367 367
             'created' => [
368 368
                 'name' => 'datum aangemaakt',
369
-                'include' => function ($event) {
369
+                'include' => function($event) {
370 370
                     if (!empty($event->created)) {
371 371
                         return $this->formatDate($event->created);
372 372
                     } else {
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
             ],
378 378
             'modified' => [
379 379
                 'name' => 'datum laatste aanpassing',
380
-                'include' => function ($event) {
380
+                'include' => function($event) {
381 381
                     if (!empty($event->modified)) {
382 382
                         return $this->formatDate($event->modified);
383 383
                     } else {
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
             ],
389 389
             'available' => [
390 390
                 'name' => 'embargodatum',
391
-                'include' => function ($event) {
391
+                'include' => function($event) {
392 392
                     if (!empty($event->available)) {
393 393
                         return $this->formatDateWithoutTime($event->available);
394 394
                     } else {
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
             ],
400 400
             'startDate' => [
401 401
                 'name' => 'startdatum',
402
-                'include' => function ($event) {
402
+                'include' => function($event) {
403 403
                     if (!empty($event->startDate)) {
404 404
                         return $this->formatDate($event->startDate);
405 405
                     } else {
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
             ],
411 411
             'endDate' => [
412 412
                 'name' => 'einddatum',
413
-                'include' => function ($event) {
413
+                'include' => function($event) {
414 414
                     if (!empty($event->endDate)) {
415 415
                         return $this->formatDate($event->endDate);
416 416
                     } else {
@@ -421,14 +421,14 @@  discard block
 block discarded – undo
421 421
             ],
422 422
             'calendarType' => [
423 423
                 'name' => 'tijd type',
424
-                'include' => function ($event) {
424
+                'include' => function($event) {
425 425
                     return $event->calendarType;
426 426
                 },
427 427
                 'property' => 'calendarType'
428 428
             ],
429 429
             'location' => [
430 430
                 'name' => 'locatie naam',
431
-                'include' => function ($event) {
431
+                'include' => function($event) {
432 432
                     if (property_exists($event, 'location') && isset($event->location->name)) {
433 433
                         return reset($event->location->name);
434 434
                     }
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
             ],
438 438
             'address.streetAddress' => [
439 439
                 'name' => 'straat',
440
-                'include' => function ($event) {
440
+                'include' => function($event) {
441 441
                     if (isset($event->location->address->streetAddress)) {
442 442
                         return $event->location->address->streetAddress;
443 443
                     }
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
             ],
447 447
             'address.postalCode' => [
448 448
                 'name' => 'postcode',
449
-                'include' => function ($event) {
449
+                'include' => function($event) {
450 450
                     if (isset($event->location->address->postalCode)) {
451 451
                         return $event->location->address->postalCode;
452 452
                     }
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
             ],
456 456
             'address.addressLocality' => [
457 457
                 'name' => 'gemeente',
458
-                'include' => function ($event) {
458
+                'include' => function($event) {
459 459
                     if (isset($event->location->address->addressLocality)) {
460 460
                         return $event->location->address->addressLocality;
461 461
                     }
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
             ],
465 465
             'address.addressCountry' => [
466 466
                 'name' => 'land',
467
-                'include' => function ($event) {
467
+                'include' => function($event) {
468 468
                     if (isset($event->location->address->addressCountry)) {
469 469
                         return $event->location->address->addressCountry;
470 470
                     }
@@ -473,14 +473,14 @@  discard block
 block discarded – undo
473 473
             ],
474 474
             'image' => [
475 475
                 'name' => 'afbeelding',
476
-                'include' => function ($event) {
476
+                'include' => function($event) {
477 477
                     return !empty($event->image) ? $event->image : '';
478 478
                 },
479 479
                 'property' => 'image'
480 480
             ],
481 481
             'sameAs' => [
482 482
                 'name' => 'externe ids',
483
-                'include' => function ($event) {
483
+                'include' => function($event) {
484 484
                     if (property_exists($event, 'sameAs')) {
485 485
                         $ids = array();
486 486
 
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
             ],
496 496
             'contactPoint.email' => [
497 497
                 'name' => 'e-mail',
498
-                'include' => function ($event) use ($contactPoint) {
498
+                'include' => function($event) use ($contactPoint) {
499 499
                     return $this->listJsonldProperty(
500 500
                         $contactPoint($event),
501 501
                         'email'
@@ -505,7 +505,7 @@  discard block
 block discarded – undo
505 505
             ],
506 506
             'contactPoint.telephone' => [
507 507
                 'name' => 'telefoon',
508
-                'include' => function ($event) use ($contactPoint) {
508
+                'include' => function($event) use ($contactPoint) {
509 509
                     return $this->listJsonldProperty(
510 510
                         $contactPoint($event),
511 511
                         'telephone'
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
             ],
516 516
             'contactPoint.url' => [
517 517
                 'name' => 'url',
518
-                'include' => function ($event) use ($contactPoint) {
518
+                'include' => function($event) use ($contactPoint) {
519 519
                     $contactUrls = $this->listJsonldProperty(
520 520
                         $contactPoint($event),
521 521
                         'url'
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
             ],
527 527
             'contactPoint.reservations.email' => [
528 528
                 'name' => 'e-mail reservaties',
529
-                'include' => function ($event) use ($contactPoint) {
529
+                'include' => function($event) use ($contactPoint) {
530 530
                     return $this->listJsonldProperty(
531 531
                         $contactPoint($event, 'Reservations'),
532 532
                         'email'
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
             ],
537 537
             'contactPoint.reservations.telephone' => [
538 538
                 'name' => 'telefoon reservaties',
539
-                'include' => function ($event) use ($contactPoint) {
539
+                'include' => function($event) use ($contactPoint) {
540 540
                     return $this->listJsonldProperty(
541 541
                         $contactPoint($event, 'Reservations'),
542 542
                         'telephone'
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
             ],
547 547
             'contactPoint.reservations.url' => [
548 548
                 'name' => 'online reservaties',
549
-                'include' => function ($event) use ($contactPoint) {
549
+                'include' => function($event) use ($contactPoint) {
550 550
                     return $this->listJsonldProperty(
551 551
                         $contactPoint($event, 'Reservations'),
552 552
                         'url'
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
@@ -36,14 +36,14 @@  discard block
 block discarded – undo
36 36
         if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_PeriodList) {
37 37
             /** @var \CultureFeed_Cdb_Data_Calendar_Period $period */
38 38
             $period = $cdbCalendar->current();
39
-            $startDateString = $period->getDateFrom() . 'T00:00:00';
39
+            $startDateString = $period->getDateFrom().'T00:00:00';
40 40
         } else if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_TimestampList) {
41 41
             /** @var \CultureFeed_Cdb_Data_Calendar_Timestamp $timestamp */
42 42
             $timestamp = $cdbCalendar->current();
43 43
             if ($timestamp->getStartTime()) {
44
-                $startDateString = $timestamp->getDate() . 'T' . $timestamp->getStartTime();
44
+                $startDateString = $timestamp->getDate().'T'.$timestamp->getStartTime();
45 45
             } else {
46
-                $startDateString = $timestamp->getDate() . 'T00:00:00';
46
+                $startDateString = $timestamp->getDate().'T00:00:00';
47 47
             }
48 48
         }
49 49
         $startDate = !empty($startDateString) ? DateTimeFactory::dateTimeFromDateString($startDateString) : null;
@@ -56,17 +56,17 @@  discard block
 block discarded – undo
56 56
         if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_PeriodList) {
57 57
             /** @var \CultureFeed_Cdb_Data_Calendar_Period $period */
58 58
             $period = $cdbCalendar->current();
59
-            $endDateString = $period->getDateTo() . 'T00:00:00';
59
+            $endDateString = $period->getDateTo().'T00:00:00';
60 60
         } else if ($cdbCalendar instanceof \CultureFeed_Cdb_Data_Calendar_TimestampList) {
61 61
             $firstTimestamp = $cdbCalendar->current();
62 62
             /** @var \CultureFeed_Cdb_Data_Calendar_Timestamp $timestamp */
63 63
             $cdbCalendarAsArray = iterator_to_array($cdbCalendar);
64 64
             $timestamp = iterator_count($cdbCalendar) > 1 ? end($cdbCalendarAsArray) : $firstTimestamp;
65 65
             if ($timestamp->getEndTime()) {
66
-                $endDateString = $timestamp->getDate() . 'T' . $timestamp->getEndTime();
66
+                $endDateString = $timestamp->getDate().'T'.$timestamp->getEndTime();
67 67
             } else {
68 68
                 $endTime = $timestamp->getStartTime() ? $timestamp->getStartTime() : '00:00:00';
69
-                $endDateString = $timestamp->getDate() . 'T' . $endTime;
69
+                $endDateString = $timestamp->getDate().'T'.$endTime;
70 70
             }
71 71
         }
72 72
         $endDate = !empty($endDateString) ? DateTimeFactory::dateTimeFromDateString($endDateString) : null;
@@ -83,12 +83,12 @@  discard block
 block discarded – undo
83 83
                 $cdbCalendar->next();
84 84
 
85 85
                 $startTime = $timestamp->getStartTime() ? $timestamp->getStartTime() : '00:00:00';
86
-                $startDateString = $timestamp->getDate() . 'T' . $startTime;
86
+                $startDateString = $timestamp->getDate().'T'.$startTime;
87 87
 
88 88
                 if ($timestamp->getEndTime()) {
89
-                    $endDateString = $timestamp->getDate() . 'T' . $timestamp->getEndTime();
89
+                    $endDateString = $timestamp->getDate().'T'.$timestamp->getEndTime();
90 90
                 } else {
91
-                    $endDateString = $timestamp->getDate() . 'T' . $startTime;
91
+                    $endDateString = $timestamp->getDate().'T'.$startTime;
92 92
                 }
93 93
 
94 94
                 $timestamps[] = new Timestamp(
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
             $openingHour = $mergedOpeningHour->getOpeningHours()[0];
203 203
             $openingHoursAsArray[] = [
204 204
                 'dayOfWeek' => array_map(
205
-                    function (WeekDay $weekDay) {
205
+                    function(WeekDay $weekDay) {
206 206
                         return strtolower($weekDay->toNative());
207 207
                     },
208 208
                     $mergedOpeningHour->getWeekDays()
Please login to merge, or discard this patch.
src/Offer/Offer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     {
270 270
         $equalImages = array_filter(
271 271
             $this->mediaObjects,
272
-            function ($existingMediaObjectId) use ($image) {
272
+            function($existingMediaObjectId) use ($image) {
273 273
                 return $image
274 274
                     ->getMediaObjectId()
275 275
                     ->sameValueAs($existingMediaObjectId);
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
             if ($this->rejectedReason && $reason->sameValueAs($this->rejectedReason)) {
445 445
                 return true; // nothing left to do if the offer has already been rejected for the same reason
446 446
             } else {
447
-                throw new Exception('The offer has already been rejected for another reason: ' . $this->rejectedReason);
447
+                throw new Exception('The offer has already been rejected for another reason: '.$this->rejectedReason);
448 448
             }
449 449
         }
450 450
 
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
         $this->mainImageId = $mainImage ? $mainImage->getMediaObjectId() : null;
587 587
 
588 588
         $this->mediaObjects = array_map(
589
-            function (Image $image) {
589
+            function(Image $image) {
590 590
                 return $image->getMediaObjectId();
591 591
             },
592 592
             $imagesEvent->getImages()->toArray()
Please login to merge, or discard this patch.
src/Offer/ReadModel/JSONLD/OfferLDProjector.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
             if (preg_match('/^apply(.+)$/', $method, $matches)) {
127 127
                 $event = $matches[1];
128
-                $classNameMethod = 'get' . $event . 'ClassName';
128
+                $classNameMethod = 'get'.$event.'ClassName';
129 129
 
130 130
                 if (method_exists($this, $classNameMethod)) {
131 131
                     $eventFullClassName = call_user_func(array($this, $classNameMethod));
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
         $labelsProperty = $labelAdded->getLabel()->isVisible() ? 'labels' : 'hiddenLabels';
266 266
 
267 267
         $labels = isset($offerLd->{$labelsProperty}) ? $offerLd->{$labelsProperty} : [];
268
-        $label = (string) $labelAdded->getLabel();
268
+        $label = (string)$labelAdded->getLabel();
269 269
 
270 270
         $labels[] = $label;
271 271
         $offerLd->{$labelsProperty} = array_unique($labels);
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
             if (isset($offerLd->{$labelsProperty}) && is_array($offerLd->{$labelsProperty})) {
291 291
                 $offerLd->{$labelsProperty} = array_filter(
292 292
                     $offerLd->{$labelsProperty},
293
-                    function ($label) use ($labelRemoved) {
293
+                    function($label) use ($labelRemoved) {
294 294
                         return !$labelRemoved->getLabel()->equals(
295 295
                             new Label($label)
296 296
                         );
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
             return;
388 388
         }
389 389
 
390
-        $imageId = (string) $imageRemoved->getImage()->getMediaObjectId();
390
+        $imageId = (string)$imageRemoved->getImage()->getMediaObjectId();
391 391
 
392 392
         /**
393 393
          * Matches any object that is not the removed image.
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
          * @return bool
399 399
          *  Returns true when the media object does not match the image to remove.
400 400
          */
401
-        $shouldNotBeRemoved = function ($mediaObject) use ($imageId) {
401
+        $shouldNotBeRemoved = function($mediaObject) use ($imageId) {
402 402
             $containsId = !!strpos($mediaObject->{'@id'}, $imageId);
403 403
             return !$containsId;
404 404
         };
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
         $document = $this->loadDocumentFromRepository($mainImageSelected);
437 437
         $offerLd = $document->getBody();
438 438
         $imageId = $mainImageSelected->getImage()->getMediaObjectId();
439
-        $mediaObjectMatcher = function ($matchingMediaObject, $currentMediaObject) use ($imageId) {
439
+        $mediaObjectMatcher = function($matchingMediaObject, $currentMediaObject) use ($imageId) {
440 440
             if (!$matchingMediaObject && $this->mediaObjectMatchesId($currentMediaObject, $imageId)) {
441 441
                 $matchingMediaObject = $currentMediaObject;
442 442
             }
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
      */
462 462
     protected function mediaObjectMatchesId($mediaObject, UUID $mediaObjectId)
463 463
     {
464
-        return strpos($mediaObject->{'@id'}, (string) $mediaObjectId) > 0;
464
+        return strpos($mediaObject->{'@id'}, (string)$mediaObjectId) > 0;
465 465
     }
466 466
 
467 467
     /**
@@ -642,7 +642,7 @@  discard block
 block discarded – undo
642 642
      */
643 643
     protected function applyPublished(AbstractPublished $published)
644 644
     {
645
-        $this->applyEventTransformation($published, function ($offerLd) use ($published) {
645
+        $this->applyEventTransformation($published, function($offerLd) use ($published) {
646 646
             $offerLd->workflowStatus = WorkflowStatus::READY_FOR_VALIDATION()->getName();
647 647
 
648 648
             $publicationDate = $published->getPublicationDate();
@@ -655,7 +655,7 @@  discard block
 block discarded – undo
655 655
      */
656 656
     protected function applyApproved(AbstractApproved $approved)
657 657
     {
658
-        $this->applyEventTransformation($approved, function ($offerLd) {
658
+        $this->applyEventTransformation($approved, function($offerLd) {
659 659
             $offerLd->workflowStatus = WorkflowStatus::APPROVED()->getName();
660 660
         });
661 661
     }
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
      */
692 692
     private function reject()
693 693
     {
694
-        return function ($offerLd) {
694
+        return function($offerLd) {
695 695
             $offerLd->workflowStatus = WorkflowStatus::REJECTED()->getName();
696 696
         };
697 697
     }
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
     {
729 729
         $images = $imagesEvent->getImages();
730 730
         $jsonMediaObjects = array_map(
731
-            function (Image $image) {
731
+            function(Image $image) {
732 732
                 return $this->mediaObjectSerializer->serialize($image, 'json-ld');
733 733
             },
734 734
             $images->toArray()
@@ -742,7 +742,7 @@  discard block
 block discarded – undo
742 742
         }
743 743
 
744 744
         if (isset($mainImage)) {
745
-            $offerLd->image = (string) $mainImage->getSourceLocation();
745
+            $offerLd->image = (string)$mainImage->getSourceLocation();
746 746
         }
747 747
     }
748 748
 
Please login to merge, or discard this patch.
src/Media/MediaManager.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
     ) {
77 77
         try {
78 78
             $existingMediaObject = $this->repository->load($id);
79
-            $this->logger->info('Trying to create media with id: ' .$id . ' but it already exists. Using existing Media Object!');
79
+            $this->logger->info('Trying to create media with id: '.$id.' but it already exists. Using existing Media Object!');
80 80
 
81 81
             return $existingMediaObject;
82 82
         } catch (AggregateNotFoundException $exception) {
83
-            $this->logger->info('No existing media with id: ' .$id . ' found. Creating a new Media Object!');
83
+            $this->logger->info('No existing media with id: '.$id.' found. Creating a new Media Object!');
84 84
         }
85 85
 
86 86
         $mediaObject = MediaObject::create(
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
         $this->filesystem->rename(
116 116
             $uploadImage->getFilePath(),
117
-            $this->mediaDirectory . '/' . $destinationPath
117
+            $this->mediaDirectory.'/'.$destinationPath
118 118
         );
119 119
 
120 120
         $this->create(
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             Url::fromNative($destinationIri)
126 126
         );
127 127
 
128
-        $jobInfo = ['file_id' => (string) $uploadImage->getFileId()];
128
+        $jobInfo = ['file_id' => (string)$uploadImage->getFileId()];
129 129
         $this->logger->info('job_info', $jobInfo);
130 130
     }
131 131
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     public function get(UUID $fileId)
136 136
     {
137 137
         try {
138
-            $mediaObject = $this->repository->load((string) $fileId);
138
+            $mediaObject = $this->repository->load((string)$fileId);
139 139
         } catch (AggregateNotFoundException $e) {
140 140
             throw new MediaObjectNotFoundException(
141 141
                 sprintf("Media object with id '%s' not found", $fileId),
@@ -159,8 +159,8 @@  discard block
 block discarded – undo
159 159
         $image = new Image(
160 160
             $mediaObject->getMediaObjectId(),
161 161
             $mediaObject->getMimeType(),
162
-            new Description((string) $mediaObject->getDescription()),
163
-            new CopyrightHolder((string) $mediaObject->getCopyrightHolder()),
162
+            new Description((string)$mediaObject->getDescription()),
163
+            new CopyrightHolder((string)$mediaObject->getCopyrightHolder()),
164 164
             $mediaObject->getSourceLocation()
165 165
         );
166 166
 
Please login to merge, or discard this patch.
src/Offer/Events/Image/AbstractImagesEvent.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function serialize()
38 38
     {
39
-        $serializedData =  parent::serialize() + array(
39
+        $serializedData = parent::serialize() + array(
40 40
             'images' => array_map(
41
-                function (Image $image) {
41
+                function(Image $image) {
42 42
                     return $image->serialize();
43 43
                 },
44 44
                 $this->images->toArray()
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $images = ImageCollection::fromArray(
63 63
             array_map(
64
-                function ($imageData) {
64
+                function($imageData) {
65 65
                     return Image::deserialize($imageData);
66 66
                 },
67 67
                 $data['images']
Please login to merge, or discard this patch.