@@ -86,7 +86,7 @@ |
||
86 | 86 | public function serialize() |
87 | 87 | { |
88 | 88 | $serialized = array( |
89 | - 'eventId' => (string) $this->eventId, |
|
89 | + 'eventId' => (string)$this->eventId, |
|
90 | 90 | 'language' => $this->language->getCode(), |
91 | 91 | 'collaborationData' => $this->collaborationData->serialize(), |
92 | 92 | ); |
@@ -268,15 +268,15 @@ |
||
268 | 268 | public function serialize() |
269 | 269 | { |
270 | 270 | $data = [ |
271 | - 'subBrand' => (string) $this->subBrand, |
|
272 | - 'plainText' => (string) $this->plainText, |
|
273 | - 'title' => (string) $this->title, |
|
274 | - 'text' => (string) $this->text, |
|
275 | - 'copyright' => (string) $this->copyright, |
|
276 | - 'keyword' => (string) $this->keyword, |
|
277 | - 'image' => (string) $this->image, |
|
278 | - 'article' => (string) $this->article, |
|
279 | - 'link' => (string) $this->link, |
|
271 | + 'subBrand' => (string)$this->subBrand, |
|
272 | + 'plainText' => (string)$this->plainText, |
|
273 | + 'title' => (string)$this->title, |
|
274 | + 'text' => (string)$this->text, |
|
275 | + 'copyright' => (string)$this->copyright, |
|
276 | + 'keyword' => (string)$this->keyword, |
|
277 | + 'image' => (string)$this->image, |
|
278 | + 'article' => (string)$this->article, |
|
279 | + 'link' => (string)$this->link, |
|
280 | 280 | ]; |
281 | 281 | |
282 | 282 | return array_filter($data, 'strlen'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | |
14 | 14 | public function __construct($keyword) |
15 | 15 | { |
16 | - $keyword = (string) $keyword; |
|
16 | + $keyword = (string)$keyword; |
|
17 | 17 | |
18 | 18 | $this->filterQuery = new FilterQuery( |
19 | 19 | sprintf( |
@@ -109,11 +109,11 @@ |
||
109 | 109 | public function serialize() |
110 | 110 | { |
111 | 111 | return [ |
112 | - 'media_object_id' => (string) $this->getMediaObjectId(), |
|
113 | - 'mime_type' => (string) $this->getMimeType(), |
|
114 | - 'description' => (string) $this->getDescription(), |
|
115 | - 'copyright_holder' => (string) $this->getCopyrightHolder(), |
|
116 | - 'source_location' => (string) $this->getSourceLocation() |
|
112 | + 'media_object_id' => (string)$this->getMediaObjectId(), |
|
113 | + 'mime_type' => (string)$this->getMimeType(), |
|
114 | + 'description' => (string)$this->getDescription(), |
|
115 | + 'copyright_holder' => (string)$this->getCopyrightHolder(), |
|
116 | + 'source_location' => (string)$this->getSourceLocation() |
|
117 | 117 | ]; |
118 | 118 | } |
119 | 119 | } |
@@ -36,10 +36,10 @@ discard block |
||
36 | 36 | $normalizedData = [ |
37 | 37 | '@id' => $this->iriGenerator->iri($mediaObject->getMediaObjectId()), |
38 | 38 | '@type' => $this->serializeMimeType($mediaObject->getMimeType()), |
39 | - 'contentUrl' => (string) $mediaObject->getSourceLocation(), |
|
40 | - 'thumbnailUrl' => (string) $mediaObject->getSourceLocation(), |
|
41 | - 'description' => (string) $mediaObject->getDescription(), |
|
42 | - 'copyrightHolder' => (string) $mediaObject->getCopyrightHolder(), |
|
39 | + 'contentUrl' => (string)$mediaObject->getSourceLocation(), |
|
40 | + 'thumbnailUrl' => (string)$mediaObject->getSourceLocation(), |
|
41 | + 'description' => (string)$mediaObject->getDescription(), |
|
42 | + 'copyrightHolder' => (string)$mediaObject->getCopyrightHolder(), |
|
43 | 43 | ]; |
44 | 44 | |
45 | 45 | return $normalizedData; |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | public function serializeMimeType(MIMEType $mimeType) |
49 | 49 | { |
50 | - $typeParts = explode('/', (string) $mimeType); |
|
50 | + $typeParts = explode('/', (string)$mimeType); |
|
51 | 51 | $type = array_shift($typeParts); |
52 | 52 | |
53 | 53 | if ($type !== 'image') { |
@@ -107,7 +107,7 @@ |
||
107 | 107 | 'mime_type' => $this->getMimeType()->toNative(), |
108 | 108 | 'description' => $this->getDescription()->toNative(), |
109 | 109 | 'copyright_holder' => $this->getCopyrightHolder()->toNative(), |
110 | - 'source_location' => (string) $this->getSourceLocation() |
|
110 | + 'source_location' => (string)$this->getSourceLocation() |
|
111 | 111 | ); |
112 | 112 | } |
113 | 113 |
@@ -32,7 +32,7 @@ |
||
32 | 32 | public function serialize() |
33 | 33 | { |
34 | 34 | return parent::serialize() + array( |
35 | - 'label' => (string) $this->label, |
|
35 | + 'label' => (string)$this->label, |
|
36 | 36 | ); |
37 | 37 | } |
38 | 38 |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public static function calendar(Calendar $calendar) |
25 | 25 | { |
26 | - $offerCalenderUpdate = function ($body) use ($calendar) { |
|
26 | + $offerCalenderUpdate = function($body) use ($calendar) { |
|
27 | 27 | // Purge any existing calendar data |
28 | 28 | unset( |
29 | 29 | $body->calendarType, |
@@ -33,8 +33,8 @@ discard block |
||
33 | 33 | $body->openingHours |
34 | 34 | ); |
35 | 35 | |
36 | - return (object) array_merge( |
|
37 | - (array) $body, |
|
36 | + return (object)array_merge( |
|
37 | + (array)$body, |
|
38 | 38 | $calendar->toJsonLd() |
39 | 39 | ); |
40 | 40 | }; |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | $jsonLD->address = $placeCreated->getAddress()->toJsonLd(); |
161 | 161 | |
162 | 162 | $calendarJsonLD = $placeCreated->getCalendar()->toJsonLd(); |
163 | - $jsonLD = (object) array_merge((array) $jsonLD, $calendarJsonLD); |
|
163 | + $jsonLD = (object)array_merge((array)$jsonLD, $calendarJsonLD); |
|
164 | 164 | |
165 | 165 | $eventType = $placeCreated->getEventType(); |
166 | 166 | $jsonLD->terms = [ |
@@ -214,8 +214,8 @@ discard block |
||
214 | 214 | $jsonLD->address = $majorInfoUpdated->getAddress()->toJsonLd(); |
215 | 215 | |
216 | 216 | // Remove old theme and event type. |
217 | - $jsonLD->terms = array_filter($jsonLD->terms, function ($term) { |
|
218 | - return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
217 | + $jsonLD->terms = array_filter($jsonLD->terms, function($term) { |
|
218 | + return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
219 | 219 | }); |
220 | 220 | |
221 | 221 | $eventType = $majorInfoUpdated->getEventType(); |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | // Remove all old facilities + get numeric keys. |
362 | 362 | $terms = array_values(array_filter( |
363 | 363 | $terms, |
364 | - function ($term) { |
|
364 | + function($term) { |
|
365 | 365 | return $term->domain !== Facility::DOMAIN; |
366 | 366 | } |
367 | 367 | )); |