@@ -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'); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | $jsonLD->address = $placeCreated->getAddress()->toJsonLd(); |
151 | 151 | |
152 | 152 | $calendarJsonLD = $placeCreated->getCalendar()->toJsonLd(); |
153 | - $jsonLD = (object) array_merge((array) $jsonLD, $calendarJsonLD); |
|
153 | + $jsonLD = (object)array_merge((array)$jsonLD, $calendarJsonLD); |
|
154 | 154 | |
155 | 155 | $eventType = $placeCreated->getEventType(); |
156 | 156 | $jsonLD->terms = [ |
@@ -197,11 +197,11 @@ discard block |
||
197 | 197 | $jsonLD->address = $majorInfoUpdated->getAddress()->toJsonLd(); |
198 | 198 | |
199 | 199 | $calendarJsonLD = $majorInfoUpdated->getCalendar()->toJsonLd(); |
200 | - $jsonLD = (object) array_merge((array) $jsonLD, $calendarJsonLD); |
|
200 | + $jsonLD = (object)array_merge((array)$jsonLD, $calendarJsonLD); |
|
201 | 201 | |
202 | 202 | // Remove old theme and event type. |
203 | - $jsonLD->terms = array_filter($jsonLD->terms, function ($term) { |
|
204 | - return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
203 | + $jsonLD->terms = array_filter($jsonLD->terms, function($term) { |
|
204 | + return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
205 | 205 | }); |
206 | 206 | |
207 | 207 | $eventType = $majorInfoUpdated->getEventType(); |
@@ -347,7 +347,7 @@ discard block |
||
347 | 347 | // Remove all old facilities + get numeric keys. |
348 | 348 | $terms = array_values(array_filter( |
349 | 349 | $terms, |
350 | - function ($term) { |
|
350 | + function($term) { |
|
351 | 351 | return $term->domain !== Facility::DOMAIN; |
352 | 352 | } |
353 | 353 | )); |
@@ -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( |
@@ -115,7 +115,7 @@ discard block |
||
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 |
||
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), |
@@ -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 |
@@ -462,7 +462,7 @@ |
||
462 | 462 | { |
463 | 463 | $duplicateMediaObject = array_filter( |
464 | 464 | $this->getMediaObjects(), |
465 | - function ($existingMediaObjectId) use ($image) { |
|
465 | + function($existingMediaObjectId) use ($image) { |
|
466 | 466 | return $image |
467 | 467 | ->getMediaObjectId() |
468 | 468 | ->sameValueAs($existingMediaObjectId); |
@@ -89,9 +89,9 @@ |
||
89 | 89 | { |
90 | 90 | return array( |
91 | 91 | 'item_id' => $this->itemId, |
92 | - 'media_object_id' => (string) $this->mediaObjectId, |
|
93 | - 'description' => (string) $this->description, |
|
94 | - 'copyright_holder' => (string) $this->copyrightHolder |
|
92 | + 'media_object_id' => (string)$this->mediaObjectId, |
|
93 | + 'description' => (string)$this->description, |
|
94 | + 'copyright_holder' => (string)$this->copyrightHolder |
|
95 | 95 | ); |
96 | 96 | } |
97 | 97 |