@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * Set the index types. |
67 | 67 | * |
68 | - * @param array $types |
|
68 | + * @param string[] $types |
|
69 | 69 | */ |
70 | 70 | public function setIndexTypes(array $types) |
71 | 71 | { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | /** |
76 | 76 | * Override page IDs. |
77 | 77 | * |
78 | - * @param array $overridePageIds |
|
78 | + * @param integer[] $overridePageIds |
|
79 | 79 | */ |
80 | 80 | public function setOverridePageIds($overridePageIds) |
81 | 81 | { |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * Find List. |
124 | 124 | * |
125 | 125 | * @param int $limit |
126 | - * @param int|string $listStartTime |
|
126 | + * @param integer $listStartTime |
|
127 | 127 | * @param int $startOffsetHours |
128 | 128 | * @param int $overrideStartDate |
129 | 129 | * @param int $overrideEndDate |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | * Find by traversing information. |
293 | 293 | * |
294 | 294 | * @param DomainObjectInterface $event |
295 | - * @param bool|true $future |
|
295 | + * @param boolean $future |
|
296 | 296 | * @param bool|false $past |
297 | 297 | * @param int $limit |
298 | 298 | * @param string $sort |
@@ -118,7 +118,7 @@ |
||
118 | 118 | // Configure position of where to put the calendarize fields |
119 | 119 | // Either after a field or before a field; after takes precedence, if defined |
120 | 120 | // Parameter value is the single TCA field name |
121 | - $position = isset($configuration['addColumnsAfter']) ? 'after:' . \trim($configuration['addColumnsAfter']): ''; |
|
121 | + $position = isset($configuration['addColumnsAfter']) ? 'after:' . \trim($configuration['addColumnsAfter']) : ''; |
|
122 | 122 | if (!$position && isset($configuration['addColumnsBefore'])) { |
123 | 123 | $position = 'before:' . \trim($configuration['addColumnsBefore']); |
124 | 124 | } |