@@ -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 | { |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | $GLOBALS['TCA'][$table]['ctrl']['languageField'], |
| 53 | 53 | [ |
| 54 | 54 | -1, // All languages |
| 55 | - $this->getLanguageId(), // Current language |
|
| 55 | + $this->getLanguageId(), // Current language |
|
| 56 | 56 | ] |
| 57 | 57 | ); |
| 58 | 58 | } |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | } |
| 24 | 24 | $events = $parser->getEvents(); |
| 25 | 25 | |
| 26 | - $wrapEvents = function (ICalEvent $event) { |
|
| 26 | + $wrapEvents = function(ICalEvent $event) { |
|
| 27 | 27 | return new DissectEventAdapter($event); |
| 28 | 28 | }; |
| 29 | 29 | |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | { |
| 86 | 86 | static $tables; |
| 87 | 87 | if (!\is_array($tables)) { |
| 88 | - $tables = array_map(function ($config) { |
|
| 88 | + $tables = array_map(function($config) { |
|
| 89 | 89 | return $config['tableName']; |
| 90 | 90 | }, GeneralUtility::makeInstance(Register::class)->getRegister()); |
| 91 | 91 | } |
@@ -137,12 +137,12 @@ discard block |
||
| 137 | 137 | protected function processEvent(EventRepository $repository, Event $model, $modus) |
| 138 | 138 | { |
| 139 | 139 | // define the function for the delete-modus. |
| 140 | - $delete = function ($repository, $model) { |
|
| 140 | + $delete = function($repository, $model) { |
|
| 141 | 141 | $repository->remove($model); |
| 142 | 142 | }; |
| 143 | 143 | |
| 144 | 144 | // define the function for the hide-modus. |
| 145 | - $hide = function ($repository, $model) { |
|
| 145 | + $hide = function($repository, $model) { |
|
| 146 | 146 | $model->setHidden(true); |
| 147 | 147 | $repository->update($model); |
| 148 | 148 | }; |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | ->execute() |
| 205 | 205 | ->fetchAll(); |
| 206 | 206 | |
| 207 | - $foreignUids = array_map(function ($item) { |
|
| 207 | + $foreignUids = array_map(function($item) { |
|
| 208 | 208 | return (int)$item['foreign_uid']; |
| 209 | 209 | }, $foreignUids); |
| 210 | 210 | |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | |
| 66 | 66 | $actions = $this->flexFormService->get('switchableControllerActions', 'main'); |
| 67 | 67 | $parts = GeneralUtility::trimExplode(';', $actions, true); |
| 68 | - $parts = array_map(function ($element) { |
|
| 68 | + $parts = array_map(function($element) { |
|
| 69 | 69 | $split = explode('->', $element); |
| 70 | 70 | |
| 71 | 71 | return ucfirst($split[1]); |
@@ -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 | } |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | /** |
| 77 | 77 | * Set the index types. |
| 78 | 78 | * |
| 79 | - * @param array $types |
|
| 79 | + * @param string[] $types |
|
| 80 | 80 | */ |
| 81 | 81 | public function setIndexTypes(array $types) |
| 82 | 82 | { |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | /** |
| 87 | 87 | * Override page IDs. |
| 88 | 88 | * |
| 89 | - * @param array $overridePageIds |
|
| 89 | + * @param integer[] $overridePageIds |
|
| 90 | 90 | */ |
| 91 | 91 | public function setOverridePageIds($overridePageIds) |
| 92 | 92 | { |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | * Find List. |
| 137 | 137 | * |
| 138 | 138 | * @param int $limit |
| 139 | - * @param int|string $listStartTime |
|
| 139 | + * @param integer $listStartTime |
|
| 140 | 140 | * @param int $startOffsetHours |
| 141 | 141 | * @param int $overrideStartDate |
| 142 | 142 | * @param int $overrideEndDate |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | * Find by traversing information. |
| 336 | 336 | * |
| 337 | 337 | * @param Index $index |
| 338 | - * @param bool|true $future |
|
| 338 | + * @param boolean $future |
|
| 339 | 339 | * @param bool|false $past |
| 340 | 340 | * @param int $limit |
| 341 | 341 | * @param string $sort |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | * Find by traversing information. |
| 384 | 384 | * |
| 385 | 385 | * @param DomainObjectInterface $event |
| 386 | - * @param bool|true $future |
|
| 386 | + * @param boolean $future |
|
| 387 | 387 | * @param bool|false $past |
| 388 | 388 | * @param int $limit |
| 389 | 389 | * @param string $sort |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | |
| 34 | 34 | $date = $arguments['date']; |
| 35 | 35 | if ($date instanceof \DateTimeInterface) { |
| 36 | - $renderChildrenClosure = function () use ($date) { |
|
| 36 | + $renderChildrenClosure = function() use ($date) { |
|
| 37 | 37 | // Convert date to timestamp, so that it can be reparsed. |
| 38 | 38 | return $date->getTimestamp(); |
| 39 | 39 | }; |