@@ -295,7 +295,7 @@ |
||
295 | 295 | $placeLd = $document->getBody(); |
296 | 296 | |
297 | 297 | $placeLd->organizer = array( |
298 | - '@type' => 'Organizer', |
|
298 | + '@type' => 'Organizer', |
|
299 | 299 | ) + (array)$this->organizerJSONLD($organizerUpdated->getOrganizerId()); |
300 | 300 | |
301 | 301 | $this->repository->save($document->withBody($placeLd)); |
@@ -12,13 +12,11 @@ discard block |
||
12 | 12 | use CultuurNet\UDB3\EntityServiceInterface; |
13 | 13 | use CultuurNet\UDB3\Event\EventType; |
14 | 14 | use CultuurNet\UDB3\Event\ReadModel\DocumentRepositoryInterface; |
15 | -use CultuurNet\UDB3\EventHandling\DelegateEventHandlingToSpecificMethodTrait; |
|
16 | 15 | use CultuurNet\UDB3\Facility; |
17 | 16 | use CultuurNet\UDB3\Iri\IriGeneratorInterface; |
18 | 17 | use CultuurNet\UDB3\Offer\ReadModel\JSONLD\CdbXMLItemBaseImporter; |
19 | 18 | use CultuurNet\UDB3\Offer\ReadModel\JSONLD\OfferLDProjector; |
20 | 19 | use CultuurNet\UDB3\Offer\ReadModel\JSONLD\OfferUpdate; |
21 | -use CultuurNet\UDB3\Offer\ReadModel\OfferJsonDocument; |
|
22 | 20 | use CultuurNet\UDB3\Place\Events\BookingInfoUpdated; |
23 | 21 | use CultuurNet\UDB3\Place\Events\ContactPointUpdated; |
24 | 22 | use CultuurNet\UDB3\Place\Events\DescriptionUpdated; |
@@ -40,7 +38,6 @@ discard block |
||
40 | 38 | use CultuurNet\UDB3\Place\PlaceEvent; |
41 | 39 | use CultuurNet\UDB3\Place\ReadModel\JSONLD\CdbXMLImporter; |
42 | 40 | use CultuurNet\UDB3\ReadModel\JsonDocument; |
43 | -use CultuurNet\UDB3\SluggerInterface; |
|
44 | 41 | use CultuurNet\UDB3\Theme; |
45 | 42 | use Symfony\Component\Serializer\SerializerInterface; |
46 | 43 |
@@ -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 | )); |
@@ -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( |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @file |
|
4 | - */ |
|
3 | + * @file |
|
4 | + */ |
|
5 | 5 | |
6 | 6 | namespace CultuurNet\UDB3\Variations; |
7 | 7 |
@@ -110,8 +110,8 @@ |
||
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
113 | - * @param EventUpdatedFromCdbXml $eventUpdatedFromCdbXml |
|
114 | - */ |
|
113 | + * @param EventUpdatedFromCdbXml $eventUpdatedFromCdbXml |
|
114 | + */ |
|
115 | 115 | protected function applyEventUpdatedFromCdbXml(EventUpdatedFromCdbXml $eventUpdatedFromCdbXml) |
116 | 116 | { |
117 | 117 | $eventId = $eventUpdatedFromCdbXml->getEventId(); |
@@ -3,12 +3,9 @@ |
||
3 | 3 | namespace CultuurNet\UDB3\Media\Serialization; |
4 | 4 | |
5 | 5 | use CultuurNet\UDB3\Iri\IriGeneratorInterface; |
6 | -use CultuurNet\UDB3\Media\MediaObject; |
|
7 | 6 | use CultuurNet\UDB3\Media\Properties\MIMEType; |
8 | -use Symfony\Component\HttpFoundation\File\MimeType\ExtensionGuesser; |
|
9 | 7 | use Symfony\Component\Serializer\Exception\UnsupportedException; |
10 | 8 | use Symfony\Component\Serializer\SerializerInterface; |
11 | -use ValueObjects\Web\Url; |
|
12 | 9 | |
13 | 10 | class MediaObjectSerializer implements SerializerInterface |
14 | 11 | { |
@@ -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') { |
@@ -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 | } |
@@ -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 |
@@ -78,6 +78,9 @@ |
||
78 | 78 | return $document->getRawBody(); |
79 | 79 | } |
80 | 80 | |
81 | + /** |
|
82 | + * @param string $id |
|
83 | + */ |
|
81 | 84 | public function iri($id) |
82 | 85 | { |
83 | 86 | return $this->iriGenerator->iri($id); |