@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | } |
273 | 273 | |
274 | 274 | /** |
275 | - * @param $eventImportId |
|
275 | + * @param string $eventImportId |
|
276 | 276 | * @param $configuration |
277 | 277 | * @param $dbQueries |
278 | 278 | * @param $customMessages |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | } |
378 | 378 | |
379 | 379 | /** |
380 | - * @param $eventImportId |
|
380 | + * @param string $eventImportId |
|
381 | 381 | * @param $dbQueries |
382 | 382 | * @param $customMessages |
383 | 383 | * |
@@ -95,7 +95,7 @@ |
||
95 | 95 | * Send the content type header and the right file extension in front of the content. |
96 | 96 | * |
97 | 97 | * @param $contentType |
98 | - * @param $fileExtension |
|
98 | + * @param string $fileExtension |
|
99 | 99 | */ |
100 | 100 | protected function sendHeaderAndFilename($contentType, $fileExtension) |
101 | 101 | { |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * Find List. |
69 | 69 | * |
70 | 70 | * @param int $limit |
71 | - * @param int|string $listStartTime |
|
71 | + * @param integer $listStartTime |
|
72 | 72 | * @param int $startOffsetHours |
73 | 73 | * @param int $overrideStartDate |
74 | 74 | * @param int $overrideEndDate |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | * Find by traversing information. |
204 | 204 | * |
205 | 205 | * @param DomainObjectInterface $event |
206 | - * @param bool|true $future |
|
206 | + * @param boolean $future |
|
207 | 207 | * @param bool|false $past |
208 | 208 | * @param int $limit |
209 | 209 | * @param string $sort |
@@ -482,9 +482,9 @@ |
||
482 | 482 | /** |
483 | 483 | * Update cal event. |
484 | 484 | * |
485 | - * @param $calendarId |
|
486 | - * @param $objectUri |
|
487 | - * @param $calendarData |
|
485 | + * @param string $calendarId |
|
486 | + * @param string $objectUri |
|
487 | + * @param string $calendarData |
|
488 | 488 | */ |
489 | 489 | private function updateCalEvent($calendarId, $objectUri, $calendarData) |
490 | 490 | { |
@@ -39,7 +39,7 @@ |
||
39 | 39 | * Add one row to the table. |
40 | 40 | * |
41 | 41 | * @param string $label |
42 | - * @param mixed $value |
|
42 | + * @param string $value |
|
43 | 43 | */ |
44 | 44 | public function addRow($label, $value) |
45 | 45 | { |
@@ -21,7 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * Build the timetable for the given configuration matrix (sorted). |
23 | 23 | * |
24 | - * @param array $ids |
|
24 | + * @param integer[] $ids |
|
25 | 25 | * |
26 | 26 | * @return array |
27 | 27 | */ |
@@ -125,7 +125,7 @@ |
||
125 | 125 | * |
126 | 126 | * @throws Exception |
127 | 127 | * |
128 | - * @return array |
|
128 | + * @return string[] |
|
129 | 129 | */ |
130 | 130 | public function getGroupMemberSet($principal) |
131 | 131 | { |
@@ -244,7 +244,7 @@ |
||
244 | 244 | $sort = $this->settings['sorting']; |
245 | 245 | $this->checkStaticTemplateIsIncluded(); |
246 | 246 | $this->slotExtendedAssignMultiple([ |
247 | - 'indices' => $this->indexRepository->findByPast($limit, $sort) |
|
247 | + 'indices' => $this->indexRepository->findByPast($limit, $sort) |
|
248 | 248 | ], __CLASS__, __FUNCTION__); |
249 | 249 | } |
250 | 250 |