Completed
Pull Request — master (#161)
by Kristof
05:38
created
src/Place/ReadModel/JSONLD/CdbXMLImporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
                         'addressLocality' => $address->getCity(),
98 98
                         'postalCode' => $address->getZip(),
99 99
                         'streetAddress' =>
100
-                            $address->getStreet() . ' ' .
100
+                            $address->getStreet().' '.
101 101
                             $address->getHouseNumber(),
102 102
                     );
103 103
 
Please login to merge, or discard this patch.
src/HasCdbXmlTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     {
26 26
         if (!is_string($cdbXml)) {
27 27
             throw new \InvalidArgumentException(
28
-                'Expected argument 1 to be a scalar string, received ' . gettype($cdbXml)
28
+                'Expected argument 1 to be a scalar string, received '.gettype($cdbXml)
29 29
             );
30 30
         }
31 31
         $this->cdbXml = $cdbXml;
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         if (!is_string($cdbXmlNamespaceUri)) {
40 40
             throw new \InvalidArgumentException(
41
-                'Expected argument 1 to be a scalar string, received ' . gettype($cdbXmlNamespaceUri)
41
+                'Expected argument 1 to be a scalar string, received '.gettype($cdbXmlNamespaceUri)
42 42
             );
43 43
         }
44 44
         $this->cdbXmlNamespaceUri = $cdbXmlNamespaceUri;
Please login to merge, or discard this patch.
src/Media/MediaManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
         $this->filesystem->rename(
106 106
             $uploadImage->getFilePath(),
107
-            $this->mediaDirectory . '/' . $destinationPath
107
+            $this->mediaDirectory.'/'.$destinationPath
108 108
         );
109 109
 
110 110
         $this->create(
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             Url::fromNative($destinationIri)
116 116
         );
117 117
 
118
-        $jobInfo = ['file_id' => (string) $uploadImage->getFileId()];
118
+        $jobInfo = ['file_id' => (string)$uploadImage->getFileId()];
119 119
         $this->logger->info('job_info', $jobInfo);
120 120
     }
121 121
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     public function get(UUID $fileId)
126 126
     {
127 127
         try {
128
-            $mediaObject = $this->repository->load((string) $fileId);
128
+            $mediaObject = $this->repository->load((string)$fileId);
129 129
         } catch (AggregateNotFoundException $e) {
130 130
             throw new MediaObjectNotFoundException(
131 131
                 sprintf("Media object with id '%s' not found", $fileId),
Please login to merge, or discard this patch.
src/Media/SimplePathGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
      */
13 13
     public function path(UUID $fileId, String $extension)
14 14
     {
15
-        return (string)$fileId . '.' . (string)$extension;
15
+        return (string)$fileId.'.'.(string)$extension;
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Media/ImageUploaderService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,8 @@
 block discarded – undo
91 91
         $mimeType = MIMEType::fromNative($mimeTypeString);
92 92
 
93 93
         $fileId = new UUID($this->uuidGenerator->generate());
94
-        $fileName = $fileId . '.' . $file->guessExtension();
95
-        $destination = $this->getUploadDirectory() . '/' . $fileName;
94
+        $fileName = $fileId.'.'.$file->guessExtension();
95
+        $destination = $this->getUploadDirectory().'/'.$fileName;
96 96
         $stream = fopen($file->getRealPath(), 'r+');
97 97
         $this->filesystem->writeStream($destination, $stream);
98 98
         fclose($stream);
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/CdbXMLImporter.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     private function dateFromUdb2UnixTime($unixTime)
135 135
     {
136 136
         $dateTime = new \DateTime(
137
-            '@' . $unixTime,
137
+            '@'.$unixTime,
138 138
             new \DateTimeZone('Europe/Brussels')
139 139
         );
140 140
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     {
171 171
         $labels = array_filter(
172 172
             array_values($event->getKeywords()),
173
-            function ($keyword) {
173
+            function($keyword) {
174 174
                 return (strlen(trim($keyword)) > 0);
175 175
             }
176 176
         );
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
                     'addressLocality' => $address->getCity(),
228 228
                     'postalCode' => $address->getZip(),
229 229
                     'streetAddress' =>
230
-                        $address->getStreet() . ' ' . $address->getHouseNumber(
230
+                        $address->getStreet().' '.$address->getHouseNumber(
231 231
                         ),
232 232
                 );
233 233
             }
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
             $calendarType = 'periodic';
415 415
             $calendar->rewind();
416 416
             $firstCalendarItem = $calendar->current();
417
-            $startDateString = $firstCalendarItem->getDateFrom() . 'T00:00:00';
417
+            $startDateString = $firstCalendarItem->getDateFrom().'T00:00:00';
418 418
             $startDate = DateTimeFactory::dateTimeFromDateString($startDateString);
419 419
 
420 420
             if (iterator_count($calendar) > 1) {
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
                 $lastCalendarItem = $firstCalendarItem;
425 425
             }
426 426
 
427
-            $endDateString = $lastCalendarItem->getDateTo() . 'T00:00:00';
427
+            $endDateString = $lastCalendarItem->getDateTo().'T00:00:00';
428 428
             $endDate = DateTimeFactory::dateTimeFromDateString($endDateString);
429 429
 
430 430
             $jsonLD->startDate = $startDate->format('c');
@@ -436,9 +436,9 @@  discard block
 block discarded – undo
436 436
             $firstCalendarItem = $calendar->current();
437 437
             if ($firstCalendarItem->getStartTime()) {
438 438
                 $dateString =
439
-                    $firstCalendarItem->getDate() . 'T' . $firstCalendarItem->getStartTime();
439
+                    $firstCalendarItem->getDate().'T'.$firstCalendarItem->getStartTime();
440 440
             } else {
441
-                $dateString = $firstCalendarItem->getDate() . 'T00:00:00';
441
+                $dateString = $firstCalendarItem->getDate().'T00:00:00';
442 442
             }
443 443
 
444 444
             $startDate = DateTimeFactory::dateTimeFromDateString($dateString);
@@ -453,10 +453,10 @@  discard block
 block discarded – undo
453 453
             $endDateString = null;
454 454
             if ($lastCalendarItem->getEndTime()) {
455 455
                 $endDateString =
456
-                    $lastCalendarItem->getDate() . 'T' . $lastCalendarItem->getEndTime();
456
+                    $lastCalendarItem->getDate().'T'.$lastCalendarItem->getEndTime();
457 457
             } else {
458 458
                 if (iterator_count($calendar) > 1) {
459
-                    $endDateString = $lastCalendarItem->getDate() . 'T00:00:00';
459
+                    $endDateString = $lastCalendarItem->getDate().'T00:00:00';
460 460
                 }
461 461
             }
462 462
 
@@ -570,7 +570,7 @@  discard block
 block discarded – undo
570 570
             $slug = '';
571 571
         }
572 572
 
573
-        $reference = 'http://www.uitinvlaanderen.be/agenda/e/' . $slug . '/' . $event->getCdbId();
573
+        $reference = 'http://www.uitinvlaanderen.be/agenda/e/'.$slug.'/'.$event->getCdbId();
574 574
 
575 575
 
576 576
         if (!property_exists($jsonLD, 'sameAs')) {
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/EventLDProjector.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
     ) {
273 273
         $this->saveNewDocument(
274 274
             $eventId,
275
-            function (\stdClass $eventLd) use ($eventId, $cdbXmlNamespaceUri, $cdbXml, $domainMessage) {
275
+            function(\stdClass $eventLd) use ($eventId, $cdbXmlNamespaceUri, $cdbXml, $domainMessage) {
276 276
                 $eventLd = $this->projectEventCdbXmlToObject(
277 277
                     $eventLd,
278 278
                     $eventId,
@@ -329,13 +329,13 @@  discard block
 block discarded – undo
329 329
     ) {
330 330
         $this->saveNewDocument(
331 331
             $eventId,
332
-            function (\stdClass $eventLd) use ($cdbXmlNamespaceUri, $eventId, $cdbXml) {
332
+            function(\stdClass $eventLd) use ($cdbXmlNamespaceUri, $eventId, $cdbXml) {
333 333
                 return $this->projectEventCdbXmlToObject(
334 334
                     $eventLd,
335 335
                     $eventId,
336 336
                     $cdbXmlNamespaceUri,
337 337
                     $cdbXml
338
-                ) ;
338
+                );
339 339
             }
340 340
         );
341 341
     }
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     ) {
412 412
         $this->saveNewDocument(
413 413
             $eventCreated->getEventId(),
414
-            function (\stdClass $jsonLD) use ($eventCreated, $domainMessage) {
414
+            function(\stdClass $jsonLD) use ($eventCreated, $domainMessage) {
415 415
                 $jsonLD->{'@id'} = $this->iriGenerator->iri(
416 416
                     $eventCreated->getEventId()
417 417
                 );
@@ -485,8 +485,8 @@  discard block
 block discarded – undo
485 485
         ) + (array)$this->placeJSONLD($majorInfoUpdated->getLocation()->getCdbid());
486 486
 
487 487
         // Remove old theme and event type.
488
-        $jsonLD->terms = array_filter($jsonLD->terms, function ($term) {
489
-            return $term->domain !== EventType::DOMAIN &&  $term->domain !== Theme::DOMAIN;
488
+        $jsonLD->terms = array_filter($jsonLD->terms, function($term) {
489
+            return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN;
490 490
         });
491 491
 
492 492
         $eventType = $majorInfoUpdated->getEventType();
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
     {
664 664
         $eventSlug = $this->slugger->slug($name);
665 665
         return array(
666
-            'http://www.uitinvlaanderen.be/agenda/e/' . $eventSlug . '/' . $eventId,
666
+            'http://www.uitinvlaanderen.be/agenda/e/'.$eventSlug.'/'.$eventId,
667 667
         );
668 668
     }
669 669
 
Please login to merge, or discard this patch.
src/Event/ReadModel/History/HistoryProjector.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                     $domainMessage->getRecordedOn()
76 76
                 ),
77 77
                 new String(
78
-                    'Aangemaakt via EntryAPI door consumer "' . $consumerName . '"'
78
+                    'Aangemaakt via EntryAPI door consumer "'.$consumerName.'"'
79 79
                 ),
80 80
                 $this->getAuthorFromMetadata($domainMessage->getMetadata())
81 81
             )
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
                     $domainMessage->getRecordedOn()
96 96
                 ),
97 97
                 new String(
98
-                    'Geüpdatet via EntryAPI door consumer "' . $consumerName . '"'
98
+                    'Geüpdatet via EntryAPI door consumer "'.$consumerName.'"'
99 99
                 ),
100 100
                 $this->getAuthorFromMetadata($domainMessage->getMetadata())
101 101
             )
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         $labels = $labelsMerged->getLabels()->toStrings();
127 127
         // Quote labels.
128 128
         $quotedLabels = array_map(
129
-            function ($label) {
129
+            function($label) {
130 130
                 return "'{$label}'";
131 131
             },
132 132
             $labels
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
         $consumerName = $this->getConsumerFromMetadata($domainMessage->getMetadata());
139 139
 
140 140
         if ($consumerName) {
141
-            $message .= ' via EntryAPI door consumer "' . $consumerName . '"';
141
+            $message .= ' via EntryAPI door consumer "'.$consumerName.'"';
142 142
         }
143 143
 
144 144
         $this->writeHistory(
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         $consumerName = $this->getConsumerFromMetadata($domainMessage->getMetadata());
201 201
 
202 202
         if ($consumerName) {
203
-            $message .= ' via EntryAPI door consumer "' . $consumerName . '"';
203
+            $message .= ' via EntryAPI door consumer "'.$consumerName.'"';
204 204
         }
205 205
 
206 206
         $this->writeHistory(
Please login to merge, or discard this patch.
src/Event/Event.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     ) {
99 99
         if (!is_string($eventId)) {
100 100
             throw new \InvalidArgumentException(
101
-                'Expected eventId to be a string, received ' . gettype($eventId)
101
+                'Expected eventId to be a string, received '.gettype($eventId)
102 102
             );
103 103
         }
104 104
 
Please login to merge, or discard this patch.