@@ -18,8 +18,8 @@ |
||
18 | 18 | */ |
19 | 19 | public function __construct($id, $iri) |
20 | 20 | { |
21 | - $this->id = (string) $id; |
|
22 | - $this->iri = (string) $iri; |
|
21 | + $this->id = (string)$id; |
|
22 | + $this->iri = (string)$iri; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -108,7 +108,7 @@ |
||
108 | 108 | throw new RuntimeException(); |
109 | 109 | } |
110 | 110 | |
111 | - return [ $priceName => floatval($priceValue) ]; |
|
111 | + return [$priceName => floatval($priceValue)]; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | private function getCurrencyFormatter() |
@@ -12,7 +12,7 @@ |
||
12 | 12 | { |
13 | 13 | if (!preg_match('/^[a-z]{2}$/', $code)) { |
14 | 14 | throw new \InvalidArgumentException( |
15 | - 'Invalid language code: ' . $code |
|
15 | + 'Invalid language code: '.$code |
|
16 | 16 | ); |
17 | 17 | } |
18 | 18 | $this->code = $code; |
@@ -16,7 +16,7 @@ |
||
16 | 16 | protected $user; |
17 | 17 | |
18 | 18 | /** |
19 | - * @param StringLiteral $userId |
|
19 | + * @param StringLiteral $user |
|
20 | 20 | */ |
21 | 21 | public function __construct(\CultureFeed_User $user) |
22 | 22 | { |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | { |
77 | 77 | $name = new StringLiteral($savedSearch->name); |
78 | 78 | $query = QueryString::fromURLQueryString($savedSearch->query); |
79 | - $id = new StringLiteral((string) $savedSearch->id); |
|
79 | + $id = new StringLiteral((string)$savedSearch->id); |
|
80 | 80 | |
81 | 81 | return new SavedSearch($name, $query, $id); |
82 | 82 | } |
@@ -86,8 +86,8 @@ discard block |
||
86 | 86 | */ |
87 | 87 | public function write(StringLiteral $userId, StringLiteral $name, QueryString $queryString) |
88 | 88 | { |
89 | - $userId = (string) $userId; |
|
90 | - $name = (string) $name; |
|
89 | + $userId = (string)$userId; |
|
90 | + $name = (string)$name; |
|
91 | 91 | $query = $queryString->toURLQueryString(); |
92 | 92 | |
93 | 93 | $savedSearch = new \CultureFeed_SavedSearches_SavedSearch( |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | 'error' => $exception->getMessage(), |
108 | 108 | 'userId' => $userId, |
109 | 109 | 'name' => $name, |
110 | - 'query' => (string) $queryString, |
|
110 | + 'query' => (string)$queryString, |
|
111 | 111 | ] |
112 | 112 | ); |
113 | 113 | } |
@@ -119,8 +119,8 @@ discard block |
||
119 | 119 | */ |
120 | 120 | public function delete(StringLiteral $userId, StringLiteral $searchId) |
121 | 121 | { |
122 | - $userId = (string) $userId; |
|
123 | - $searchId = (string) $searchId; |
|
122 | + $userId = (string)$userId; |
|
123 | + $searchId = (string)$searchId; |
|
124 | 124 | |
125 | 125 | try { |
126 | 126 | $this->savedSearches->unsubscribe($searchId, $userId); |
@@ -76,7 +76,7 @@ |
||
76 | 76 | $this->domainMessageDateToNativeDate( |
77 | 77 | $domainMessage->getRecordedOn() |
78 | 78 | ), |
79 | - new StringLiteral('Event gekopieerd van ' . $eventCopied->getOriginalEventId()), |
|
79 | + new StringLiteral('Event gekopieerd van '.$eventCopied->getOriginalEventId()), |
|
80 | 80 | $this->getAuthorFromMetadata($domainMessage->getMetadata()) |
81 | 81 | ) |
82 | 82 | ); |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | if (!is_string($itemId)) { |
21 | 21 | throw new \InvalidArgumentException( |
22 | - 'Expected itemId to be a string, received ' . gettype($itemId) |
|
22 | + 'Expected itemId to be a string, received '.gettype($itemId) |
|
23 | 23 | ); |
24 | 24 | } |
25 | 25 |
@@ -597,6 +597,9 @@ |
||
597 | 597 | } |
598 | 598 | } |
599 | 599 | |
600 | + /** |
|
601 | + * @param string $eventId |
|
602 | + */ |
|
600 | 603 | private function generateSameAs($eventId, $name) |
601 | 604 | { |
602 | 605 | $eventSlug = $this->slugger->slug($name); |
@@ -533,7 +533,7 @@ |
||
533 | 533 | |
534 | 534 | $jsonLD->name->nl = $majorInfoUpdated->getTitle(); |
535 | 535 | $jsonLD->location = array( |
536 | - '@type' => 'Place', |
|
536 | + '@type' => 'Place', |
|
537 | 537 | ) + (array)$this->placeJSONLD($majorInfoUpdated->getLocation()->getCdbid()); |
538 | 538 | |
539 | 539 | $availableTo = AvailableTo::createFromCalendar($majorInfoUpdated->getCalendar()); |
@@ -511,8 +511,8 @@ discard block |
||
511 | 511 | $eventJsonLD->{'@id'} = $this->iriGenerator->iri($eventCopied->getItemId()); |
512 | 512 | |
513 | 513 | // Set the new calendar. |
514 | - $eventJsonLD = (object) array_merge( |
|
515 | - (array) $eventJsonLD, |
|
514 | + $eventJsonLD = (object)array_merge( |
|
515 | + (array)$eventJsonLD, |
|
516 | 516 | $eventCopied->getCalendar()->toJsonLd() |
517 | 517 | ); |
518 | 518 | |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | |
526 | 526 | // Set available to and from. |
527 | 527 | $availableTo = AvailableTo::createFromCalendar($eventCopied->getCalendar()); |
528 | - $eventJsonLD->availableTo = (string) $availableTo; |
|
528 | + $eventJsonLD->availableTo = (string)$availableTo; |
|
529 | 529 | unset($eventJsonLD->availableFrom); |
530 | 530 | |
531 | 531 | $newDocument = new JsonDocument($eventCopied->getItemId()); |
@@ -565,8 +565,8 @@ discard block |
||
565 | 565 | $jsonLD->availableTo = (string)$availableTo; |
566 | 566 | |
567 | 567 | // Remove old theme and event type. |
568 | - $jsonLD->terms = array_filter($jsonLD->terms, function ($term) { |
|
569 | - return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
568 | + $jsonLD->terms = array_filter($jsonLD->terms, function($term) { |
|
569 | + return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN; |
|
570 | 570 | }); |
571 | 571 | $jsonLD->terms = array_values($jsonLD->terms); |
572 | 572 | |
@@ -627,7 +627,7 @@ discard block |
||
627 | 627 | { |
628 | 628 | $eventSlug = $this->slugger->slug($name); |
629 | 629 | return array( |
630 | - 'http://www.uitinvlaanderen.be/agenda/e/' . $eventSlug . '/' . $eventId, |
|
630 | + 'http://www.uitinvlaanderen.be/agenda/e/'.$eventSlug.'/'.$eventId, |
|
631 | 631 | ); |
632 | 632 | } |
633 | 633 |
@@ -42,7 +42,7 @@ |
||
42 | 42 | private $parentUuid; |
43 | 43 | |
44 | 44 | /** |
45 | - * @return string |
|
45 | + * @return UUID |
|
46 | 46 | */ |
47 | 47 | public function getAggregateRootId() |
48 | 48 | { |