@@ -116,7 +116,7 @@ |
||
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
119 | - * @return string |
|
119 | + * @return UUID |
|
120 | 120 | */ |
121 | 121 | public function getFileId() |
122 | 122 | { |
@@ -124,6 +124,9 @@ discard block |
||
124 | 124 | return $expandedProperties; |
125 | 125 | } |
126 | 126 | |
127 | + /** |
|
128 | + * @param string[] $include |
|
129 | + */ |
|
127 | 130 | protected function includedOrDefaultProperties($include) |
128 | 131 | { |
129 | 132 | if ($include) { |
@@ -462,7 +465,7 @@ discard block |
||
462 | 465 | } |
463 | 466 | |
464 | 467 | /** |
465 | - * @param object $event |
|
468 | + * @param \stdClass $event |
|
466 | 469 | * @param string|null $type |
467 | 470 | * @return object |
468 | 471 | */ |
@@ -421,7 +421,7 @@ |
||
421 | 421 | } |
422 | 422 | |
423 | 423 | /** |
424 | - * @param $dateString |
|
424 | + * @param string $dateString |
|
425 | 425 | * A UDB2 formatted date string |
426 | 426 | * |
427 | 427 | * @return DateTimeInterface |
@@ -24,7 +24,7 @@ |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
27 | - * @return StringLiteral |
|
27 | + * @return string |
|
28 | 28 | */ |
29 | 29 | public function getTitle() |
30 | 30 | { |
@@ -24,7 +24,7 @@ |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
27 | - * @return StringLiteral |
|
27 | + * @return string |
|
28 | 28 | */ |
29 | 29 | public function getTitle() |
30 | 30 | { |
@@ -624,7 +624,7 @@ |
||
624 | 624 | } |
625 | 625 | |
626 | 626 | /** |
627 | - * @return callable |
|
627 | + * @return \Closure |
|
628 | 628 | */ |
629 | 629 | private function reject() |
630 | 630 | { |
@@ -20,6 +20,7 @@ discard block |
||
20 | 20 | * |
21 | 21 | * @param string $id |
22 | 22 | * @param string $description |
23 | + * @return string |
|
23 | 24 | */ |
24 | 25 | public function updateDescription($id, $description); |
25 | 26 | |
@@ -28,6 +29,7 @@ discard block |
||
28 | 29 | * |
29 | 30 | * @param string $id |
30 | 31 | * @param string $ageRange |
32 | + * @return string |
|
31 | 33 | */ |
32 | 34 | public function updateTypicalAgeRange($id, $ageRange); |
33 | 35 | |
@@ -35,6 +37,7 @@ discard block |
||
35 | 37 | * Delete the typical age range of a place. |
36 | 38 | * |
37 | 39 | * @param string $id |
40 | + * @return string |
|
38 | 41 | */ |
39 | 42 | public function deleteTypicalAgeRange($id); |
40 | 43 | |
@@ -43,6 +46,7 @@ discard block |
||
43 | 46 | * |
44 | 47 | * @param string $id |
45 | 48 | * @param string $organizerId |
49 | + * @return string |
|
46 | 50 | */ |
47 | 51 | public function updateOrganizer($id, $organizerId); |
48 | 52 | |
@@ -51,6 +55,7 @@ discard block |
||
51 | 55 | * |
52 | 56 | * @param string $id |
53 | 57 | * @param string $organizerId |
58 | + * @return string |
|
54 | 59 | */ |
55 | 60 | public function deleteOrganizer($id, $organizerId); |
56 | 61 | |
@@ -59,6 +64,7 @@ discard block |
||
59 | 64 | * |
60 | 65 | * @param string $id |
61 | 66 | * @param ContactPoint $contactPoint |
67 | + * @return string |
|
62 | 68 | */ |
63 | 69 | public function updateContactPoint($id, ContactPoint $contactPoint); |
64 | 70 | |
@@ -67,6 +73,7 @@ discard block |
||
67 | 73 | * |
68 | 74 | * @param string $id |
69 | 75 | * @param Image $image |
76 | + * @return string |
|
70 | 77 | */ |
71 | 78 | public function addImage($id, Image $image); |
72 | 79 | |
@@ -93,6 +100,7 @@ discard block |
||
93 | 100 | * |
94 | 101 | * @param string $id |
95 | 102 | * @param Image $image |
103 | + * @return string |
|
96 | 104 | */ |
97 | 105 | public function removeImage($id, Image $image); |
98 | 106 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @param EventInfoServiceInterface|null $uitpas |
26 | - * @param string[]|null $include |
|
26 | + * @param string[] $include |
|
27 | 27 | */ |
28 | 28 | public function __construct($include = null, EventInfoServiceInterface $uitpas = null) |
29 | 29 | { |
@@ -13,7 +13,7 @@ |
||
13 | 13 | |
14 | 14 | /** |
15 | 15 | * OpeningHours constructor. |
16 | - * @param OpeningHour[]|null $openingHours |
|
16 | + * @param OpeningHour[] $openingHours |
|
17 | 17 | */ |
18 | 18 | public function __construct(array $openingHours = null) |
19 | 19 | { |