@@ -13,11 +13,11 @@ |
||
13 | 13 | interface SluggerInterface |
14 | 14 | { |
15 | 15 | /** |
16 | - * Returns the slug for a given string |
|
17 | - * |
|
18 | - * @param string $string |
|
19 | - * |
|
20 | - * @return string |
|
21 | - **/ |
|
16 | + * Returns the slug for a given string |
|
17 | + * |
|
18 | + * @param string $string |
|
19 | + * |
|
20 | + * @return string |
|
21 | + **/ |
|
22 | 22 | public function slug($string); |
23 | 23 | } |
@@ -96,7 +96,7 @@ |
||
96 | 96 | private function getErrorMessages($validationErrors) |
97 | 97 | { |
98 | 98 | $errorMessages = array_map( |
99 | - function ($error) { |
|
99 | + function($error) { |
|
100 | 100 | return $error['message']; |
101 | 101 | }, |
102 | 102 | $validationErrors |
@@ -70,7 +70,7 @@ |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
73 | - * @param mixed $json |
|
73 | + * @param stdClass $json |
|
74 | 74 | * |
75 | 75 | * @throws ValidationException |
76 | 76 | */ |
@@ -39,7 +39,7 @@ |
||
39 | 39 | public function serialize() |
40 | 40 | { |
41 | 41 | return parent::serialize() + array( |
42 | - 'description' => (string) $this->description, |
|
42 | + 'description' => (string)$this->description, |
|
43 | 43 | ); |
44 | 44 | } |
45 | 45 |
@@ -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 | } |
@@ -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 |
@@ -799,6 +799,9 @@ |
||
799 | 799 | return $document; |
800 | 800 | } |
801 | 801 | |
802 | + /** |
|
803 | + * @param string $eventId |
|
804 | + */ |
|
802 | 805 | private function generateSameAs($eventId, $name) |
803 | 806 | { |
804 | 807 | $eventSlug = $this->slugger->slug($name); |
@@ -481,7 +481,7 @@ |
||
481 | 481 | |
482 | 482 | $jsonLD->name->nl = $majorInfoUpdated->getTitle(); |
483 | 483 | $jsonLD->location = array( |
484 | - '@type' => 'Place', |
|
484 | + '@type' => 'Place', |
|
485 | 485 | ) + (array)$this->placeJSONLD($majorInfoUpdated->getLocation()->getCdbid()); |
486 | 486 | |
487 | 487 | // Remove old theme and event type. |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | ) { |
246 | 246 | $this->saveNewDocument( |
247 | 247 | $eventId, |
248 | - function (\stdClass $eventLd) use ($eventId, $cdbXmlNamespaceUri, $cdbXml, $domainMessage) { |
|
248 | + function(\stdClass $eventLd) use ($eventId, $cdbXmlNamespaceUri, $cdbXml, $domainMessage) { |
|
249 | 249 | $eventLd = $this->projectEventCdbXmlToObject( |
250 | 250 | $eventLd, |
251 | 251 | $eventId, |
@@ -296,13 +296,13 @@ discard block |
||
296 | 296 | ) { |
297 | 297 | $this->saveNewDocument( |
298 | 298 | $eventId, |
299 | - function (\stdClass $eventLd) use ($cdbXmlNamespaceUri, $eventId, $cdbXml) { |
|
299 | + function(\stdClass $eventLd) use ($cdbXmlNamespaceUri, $eventId, $cdbXml) { |
|
300 | 300 | return $this->projectEventCdbXmlToObject( |
301 | 301 | $eventLd, |
302 | 302 | $eventId, |
303 | 303 | $cdbXmlNamespaceUri, |
304 | 304 | $cdbXml |
305 | - ) ; |
|
305 | + ); |
|
306 | 306 | } |
307 | 307 | ); |
308 | 308 | } |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | ) { |
414 | 414 | $this->saveNewDocument( |
415 | 415 | $eventCreated->getEventId(), |
416 | - function (\stdClass $jsonLD) use ($eventCreated, $domainMessage) { |
|
416 | + function(\stdClass $jsonLD) use ($eventCreated, $domainMessage) { |
|
417 | 417 | $jsonLD->{'@id'} = $this->iriGenerator->iri( |
418 | 418 | $eventCreated->getEventId() |
419 | 419 | ); |
@@ -487,8 +487,8 @@ discard block |
||
487 | 487 | $eventJsonLD->{'@id'} = $this->iriGenerator->iri($eventCopied->getItemId()); |
488 | 488 | |
489 | 489 | // Set the new calendar. |
490 | - $eventJsonLD = (object) array_merge( |
|
491 | - (array) $eventJsonLD, |
|
490 | + $eventJsonLD = (object)array_merge( |
|
491 | + (array)$eventJsonLD, |
|
492 | 492 | $eventCopied->getCalendar()->toJsonLd() |
493 | 493 | ); |
494 | 494 | |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | |
502 | 502 | // Set available to and from. |
503 | 503 | $availableTo = AvailableTo::createFromCalendar($eventCopied->getCalendar()); |
504 | - $eventJsonLD->availableTo = (string) $availableTo; |
|
504 | + $eventJsonLD->availableTo = (string)$availableTo; |
|
505 | 505 | unset($eventJsonLD->availableFrom); |
506 | 506 | |
507 | 507 | $newDocument = new JsonDocument($eventCopied->getItemId()); |
@@ -537,8 +537,8 @@ discard block |
||
537 | 537 | $jsonLD->availableTo = (string)$availableTo; |
538 | 538 | |
539 | 539 | // Remove old theme and event type. |
540 | - $jsonLD->terms = array_filter($jsonLD->terms, function ($term) { |
|
541 | - return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
540 | + $jsonLD->terms = array_filter($jsonLD->terms, function($term) { |
|
541 | + return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
542 | 542 | }); |
543 | 543 | $jsonLD->terms = array_values($jsonLD->terms); |
544 | 544 | |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | { |
599 | 599 | $eventSlug = $this->slugger->slug($name); |
600 | 600 | return array( |
601 | - 'http://www.uitinvlaanderen.be/agenda/e/' . $eventSlug . '/' . $eventId, |
|
601 | + 'http://www.uitinvlaanderen.be/agenda/e/'.$eventSlug.'/'.$eventId, |
|
602 | 602 | ); |
603 | 603 | } |
604 | 604 |
@@ -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); |
@@ -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 |
@@ -45,7 +45,7 @@ |
||
45 | 45 | |
46 | 46 | /** |
47 | 47 | * @param array $data |
48 | - * @return mixed The object instance |
|
48 | + * @return AbstractLabelEvent The object instance |
|
49 | 49 | */ |
50 | 50 | public static function deserialize(array $data) |
51 | 51 | { |