| @@ -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 |      { | 
| @@ -109,7 +109,7 @@ discard block | ||
| 109 | 109 | * Send the content type header and the right file extension in front of the content. | 
| 110 | 110 | * | 
| 111 | 111 | * @param $contentType | 
| 112 | - * @param $fileExtension | |
| 112 | + * @param string $fileExtension | |
| 113 | 113 | */ | 
| 114 | 114 | protected function sendHeaderAndFilename($contentType, $fileExtension) | 
| 115 | 115 |      { | 
| @@ -224,7 +224,7 @@ discard block | ||
| 224 | 224 | /** | 
| 225 | 225 | * Add cache tags. | 
| 226 | 226 | * | 
| 227 | - * @param array $tags | |
| 227 | + * @param string[] $tags | |
| 228 | 228 | */ | 
| 229 | 229 | protected function addCacheTags(array $tags) | 
| 230 | 230 |      { | 
| @@ -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 | 
| @@ -214,8 +214,8 @@ | ||
| 214 | 214 |                  } elseif (\is_string($key) && \is_int($indexId)) { | 
| 215 | 215 | // Table based single return value | 
| 216 | 216 | $tabledIndexIds[] = [ | 
| 217 | - 'table' => $key, | |
| 218 | - 'indexIds' => [$indexId], | |
| 217 | + 'table' => $key, | |
| 218 | + 'indexIds' => [$indexId], | |
| 219 | 219 | ]; | 
| 220 | 220 | } | 
| 221 | 221 | } | 
| @@ -130,7 +130,7 @@ | ||
| 130 | 130 | * Check if access to page is allowed for current user. | 
| 131 | 131 | * | 
| 132 | 132 | * @param int $pageId | 
| 133 | - * @param array $mountPoints | |
| 133 | + * @param integer[] $mountPoints | |
| 134 | 134 | * | 
| 135 | 135 | * @return bool | 
| 136 | 136 | */ | 
| @@ -34,7 +34,7 @@ | ||
| 34 | 34 | return preg_replace( | 
| 35 | 35 | // Line folding after 75 characters: RFC-5545/3-1-content-lines | 
| 36 | 36 | // Base on: sabre/vobject | 
| 37 | - '/( | |
| 37 | + '/( | |
| 38 | 38 | (?:^.)? # 1 additional byte in first line because of missing single space (see next line) | 
| 39 | 39 |                   .{74}           # 75 bytes per line (1 byte is used for a single space added after every CRLF) | 
| 40 | 40 | (?![\x80-\xbf]) # prevent splitting multibyte characters | 
| @@ -564,7 +564,7 @@ discard block | ||
| 564 | 564 | /** | 
| 565 | 565 | * Update event with configuration. | 
| 566 | 566 | * | 
| 567 | - * @param $eventImportId | |
| 567 | + * @param string $eventImportId | |
| 568 | 568 | * @param $configuration | 
| 569 | 569 | * @param $dbQueries | 
| 570 | 570 | * @param $customMessages | 
| @@ -689,7 +689,7 @@ discard block | ||
| 689 | 689 | /** | 
| 690 | 690 | * Find event by import ID. | 
| 691 | 691 | * | 
| 692 | - * @param $eventImportId | |
| 692 | + * @param string $eventImportId | |
| 693 | 693 | * @param $dbQueries | 
| 694 | 694 | * @param $customMessages | 
| 695 | 695 | * | 
| @@ -762,7 +762,7 @@ discard block | ||
| 762 | 762 | * Get exception configuration for exception group. | 
| 763 | 763 | * | 
| 764 | 764 | * @param $groupId | 
| 765 | - * @param array $dbQueries | |
| 765 | + * @param string[] $dbQueries | |
| 766 | 766 | * | 
| 767 | 767 | * @return string | 
| 768 | 768 | */ |