Completed
Pull Request — master (#429)
by Jonas
03:09
created
src/Organizer/DBALWebsiteLookupService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         $tableName
28 28
     ) {
29 29
         $this->connection = $connection;
30
-        $this->tableName = (string) $tableName;
30
+        $this->tableName = (string)$tableName;
31 31
     }
32 32
 
33 33
     /**
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             ->select(UniqueDBALEventStoreDecorator::UUID_COLUMN)
42 42
             ->from($this->tableName)
43 43
             ->where($expr->eq(UniqueDBALEventStoreDecorator::UNIQUE_COLUMN, ':url'))
44
-            ->setParameter(':url', (string) $url)
44
+            ->setParameter(':url', (string)$url)
45 45
             ->execute();
46 46
 
47 47
         $uuid = $results->fetchColumn();
Please login to merge, or discard this patch.
src/Offer/OfferFacilityResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@
 block discarded – undo
25 25
      */
26 26
     public function byId(StringLiteral $facilityId)
27 27
     {
28
-        if (!array_key_exists((string) $facilityId, $this->facilities)) {
28
+        if (!array_key_exists((string)$facilityId, $this->facilities)) {
29 29
             throw new \Exception("Unknown facility id '{$facilityId}'");
30 30
         }
31 31
 
32
-        return $this->facilities[(string) $facilityId];
32
+        return $this->facilities[(string)$facilityId];
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
src/Organizer/Commands/AbstractLabelCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     public function getNames()
50 50
     {
51 51
         return [
52
-            new StringLiteral((string) $this->label),
52
+            new StringLiteral((string)$this->label),
53 53
         ];
54 54
     }
55 55
 
Please login to merge, or discard this patch.
src/ContactPoint.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -112,21 +112,21 @@
 block discarded – undo
112 112
     public static function fromUdb3ModelContactPoint(Udb3ModelContactPoint $contactPoint)
113 113
     {
114 114
         $phones = array_map(
115
-            function (TelephoneNumber $phone) {
115
+            function(TelephoneNumber $phone) {
116 116
                 return $phone->toString();
117 117
             },
118 118
             $contactPoint->getTelephoneNumbers()->toArray()
119 119
         );
120 120
 
121 121
         $emails = array_map(
122
-            function (EmailAddress $emailAddress) {
122
+            function(EmailAddress $emailAddress) {
123 123
                 return $emailAddress->toString();
124 124
             },
125 125
             $contactPoint->getEmailAddresses()->toArray()
126 126
         );
127 127
 
128 128
         $urls = array_map(
129
-            function (Url $url) {
129
+            function(Url $url) {
130 130
                 return $url->toString();
131 131
             },
132 132
             $contactPoint->getUrls()->toArray()
Please login to merge, or discard this patch.
src/Media/Serialization/MediaObjectSerializer.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -49,11 +49,11 @@  discard block
 block discarded – undo
49 49
         $normalizedData = [
50 50
             '@id' => $this->iriGenerator->iri($mediaObject->getMediaObjectId()),
51 51
             '@type' => $type,
52
-            'contentUrl' => (string) $mediaObject->getSourceLocation(),
53
-            'thumbnailUrl' => (string) $mediaObject->getSourceLocation(),
54
-            'description' => (string) $mediaObject->getDescription(),
55
-            'copyrightHolder' => (string) $mediaObject->getCopyrightHolder(),
56
-            'inLanguage' => (string) $mediaObject->getLanguage(),
52
+            'contentUrl' => (string)$mediaObject->getSourceLocation(),
53
+            'thumbnailUrl' => (string)$mediaObject->getSourceLocation(),
54
+            'description' => (string)$mediaObject->getDescription(),
55
+            'copyrightHolder' => (string)$mediaObject->getCopyrightHolder(),
56
+            'inLanguage' => (string)$mediaObject->getLanguage(),
57 57
         ];
58 58
 
59 59
         return $normalizedData;
@@ -61,18 +61,18 @@  discard block
 block discarded – undo
61 61
 
62 62
     public function serializeMimeType(MIMEType $mimeType)
63 63
     {
64
-        $typeParts = explode('/', (string) $mimeType);
64
+        $typeParts = explode('/', (string)$mimeType);
65 65
         $type = array_shift($typeParts);
66 66
 
67 67
         if ($type === 'image') {
68 68
             return 'schema:ImageObject';
69 69
         }
70 70
 
71
-        if ((string) $mimeType === 'application/octet-stream') {
71
+        if ((string)$mimeType === 'application/octet-stream') {
72 72
             return 'schema:mediaObject';
73 73
         }
74 74
 
75
-        throw new UnsupportedException('Unsupported MIME-type "'. $mimeType .'"');
75
+        throw new UnsupportedException('Unsupported MIME-type "'.$mimeType.'"');
76 76
     }
77 77
 
78 78
     public function deserialize($data, $type, $format, array $context = array())
Please login to merge, or discard this patch.
src/Offer/ReadModel/MainLanguage/JSONLDMainLanguageQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $document = $this->documentRepository->get($cdbid);
39 39
 
40 40
         if (!$document) {
41
-            throw new EntityNotFoundException('Could not load JSON-LD document for cdbid ' . $cdbid);
41
+            throw new EntityNotFoundException('Could not load JSON-LD document for cdbid '.$cdbid);
42 42
         }
43 43
 
44 44
         $json = $document->getBody();
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/CdbXMLImporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
                     'addressCountry' => $address->getCountry(),
193 193
                     'addressLocality' => $address->getCity(),
194 194
                     'postalCode' => $address->getZip(),
195
-                    'streetAddress' => $address->getStreet() . ' ' . $address->getHouseNumber(),
195
+                    'streetAddress' => $address->getStreet().' '.$address->getHouseNumber(),
196 196
                 );
197 197
             }
198 198
         }
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
             $slug = '';
352 352
         }
353 353
 
354
-        $reference = 'http://www.uitinvlaanderen.be/agenda/e/' . $slug . '/' . $event->getCdbId();
354
+        $reference = 'http://www.uitinvlaanderen.be/agenda/e/'.$slug.'/'.$event->getCdbId();
355 355
 
356 356
 
357 357
         if (!property_exists($jsonLD, 'sameAs')) {
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
      */
370 370
     private function importAudience(\CultureFeed_Cdb_Item_Event $event, \stdClass $jsonLD)
371 371
     {
372
-        $eventIsPrivate = (bool) $event->isPrivate();
372
+        $eventIsPrivate = (bool)$event->isPrivate();
373 373
         $eventTargetsEducation = $eventIsPrivate && $event->getCategories()->hasCategory('2.1.3.0.0');
374 374
 
375 375
         $audienceType = $eventTargetsEducation ? 'education' : ($eventIsPrivate ? 'members' : 'everyone');
Please login to merge, or discard this patch.
src/Organizer/ReadModel/JSONLD/OrganizerJsonDocumentLanguageAnalyzer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,13 +59,13 @@
 block discarded – undo
59 59
         $mainLanguage = isset($body->mainLanguage) ? $body->mainLanguage : 'nl';
60 60
 
61 61
         if (is_string($body->name)) {
62
-            $body->name = (object) [
62
+            $body->name = (object)[
63 63
                 $mainLanguage => $body->name,
64 64
             ];
65 65
         }
66 66
 
67 67
         if (isset($body->address->streetAddress)) {
68
-            $body->address = (object) [
68
+            $body->address = (object)[
69 69
                 $mainLanguage => $body->address,
70 70
             ];
71 71
         }
Please login to merge, or discard this patch.
src/Place/ReadModel/JSONLD/PlaceJsonDocumentLanguageAnalyzer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,20 +62,20 @@
 block discarded – undo
62 62
         $mainLanguage = isset($body->mainLanguage) ? $body->mainLanguage : 'nl';
63 63
 
64 64
         if (isset($body->address->streetAddress)) {
65
-            $body->address = (object) [
65
+            $body->address = (object)[
66 66
                 $mainLanguage => $body->address,
67 67
             ];
68 68
         }
69 69
 
70 70
         if (isset($body->bookingInfo->urlLabel) && is_string($body->bookingInfo->urlLabel)) {
71
-            $body->bookingInfo->urlLabel = (object) [
71
+            $body->bookingInfo->urlLabel = (object)[
72 72
                 $mainLanguage => $body->bookingInfo->urlLabel,
73 73
             ];
74 74
         }
75 75
 
76 76
         if (isset($body->priceInfo) && is_array($body->priceInfo) && is_string($body->priceInfo[0]->name)) {
77 77
             foreach ($body->priceInfo as $priceInfo) {
78
-                $priceInfo->name = (object) [
78
+                $priceInfo->name = (object)[
79 79
                     $mainLanguage => $priceInfo->name,
80 80
                 ];
81 81
             }
Please login to merge, or discard this patch.