| @@ -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 |      { | 
| @@ -409,7 +409,7 @@ discard block | ||
| 409 | 409 | /** | 
| 410 | 410 | * Update event with configuration. | 
| 411 | 411 | * | 
| 412 | - * @param $eventImportId | |
| 412 | + * @param string $eventImportId | |
| 413 | 413 | * @param $configuration | 
| 414 | 414 | * @param $dbQueries | 
| 415 | 415 | * @param $customMessages | 
| @@ -531,7 +531,7 @@ discard block | ||
| 531 | 531 | /** | 
| 532 | 532 | * Find event by import ID. | 
| 533 | 533 | * | 
| 534 | - * @param $eventImportId | |
| 534 | + * @param string $eventImportId | |
| 535 | 535 | * @param $dbQueries | 
| 536 | 536 | * @param $customMessages | 
| 537 | 537 | * | 
| @@ -9,7 +9,6 @@ | ||
| 9 | 9 | |
| 10 | 10 | use DmitryDulepov\Realurl\Configuration\ConfigurationReader; | 
| 11 | 11 | use DmitryDulepov\Realurl\Utility; | 
| 12 | -use HDNET\Calendarize\Domain\Model\Index; | |
| 13 | 12 | use HDNET\Calendarize\Service\IndexerService; | 
| 14 | 13 | use HDNET\Calendarize\Utility\HelperUtility; | 
| 15 | 14 | use TYPO3\CMS\Core\Database\ConnectionPool; | 
| @@ -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 | 
| @@ -10,7 +10,6 @@ | ||
| 10 | 10 | use HDNET\Calendarize\Domain\Model\ConfigurationInterface; | 
| 11 | 11 | use HDNET\Calendarize\Utility\HelperUtility; | 
| 12 | 12 | use TYPO3\CMS\Install\Updates\DatabaseUpdatedPrerequisite; | 
| 13 | -use TYPO3\CMS\Install\Updates\UpgradeWizardInterface; | |
| 14 | 13 | |
| 15 | 14 | /** | 
| 16 | 15 | * NewIncludeExcludeStructureUpdate. | 
| @@ -25,8 +25,6 @@ | ||
| 25 | 25 | use TYPO3\CMS\Extbase\Persistence\QueryInterface; | 
| 26 | 26 | use TYPO3\CMS\Extbase\Property\TypeConverter\DateTimeConverter; | 
| 27 | 27 | use TYPO3\CMS\Extbase\SignalSlot\Dispatcher; | 
| 28 | -use TYPO3\CMS\Frontend\Controller\ErrorController; | |
| 29 | -use TYPO3\CMS\Frontend\Page\PageAccessFailureReasons; | |
| 30 | 28 | |
| 31 | 29 | /** | 
| 32 | 30 | * Calendar. |