@@ -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 | { |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | $this->settings = $this->configurationManager->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS); |
| 68 | 68 | |
| 69 | 69 | $pluginConfigurationService = GeneralUtility::makeInstance(PluginConfigurationService::class); |
| 70 | - $this->settings = $pluginConfigurationService->respectPluginConfiguration((array) $this->settings); |
|
| 70 | + $this->settings = $pluginConfigurationService->respectPluginConfiguration((array)$this->settings); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | protected function sendHeaderAndFilename($contentType, $fileExtension) |
| 115 | 115 | { |
| 116 | - $testMode = (bool) $this->settings['feed']['debugMode']; |
|
| 116 | + $testMode = (bool)$this->settings['feed']['debugMode']; |
|
| 117 | 117 | if ($testMode) { |
| 118 | 118 | header('Content-Type: text/plain; charset=utf-8'); |
| 119 | 119 | } else { |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | $fullRow = $databaseConnection->select(['*'], $table, ['uid' => $params['row']['uid']])->fetch(); |
| 71 | 71 | |
| 72 | 72 | $transPointer = $GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField'] ?? false; // e.g. l10n_parent |
| 73 | - if ($transPointer && (int) $fullRow[$transPointer] > 0) { |
|
| 73 | + if ($transPointer && (int)$fullRow[$transPointer] > 0) { |
|
| 74 | 74 | return; |
| 75 | 75 | } |
| 76 | 76 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | foreach ($configurations as $key => $value) { |
| 88 | 88 | $paramsInternal = [ |
| 89 | - 'row' => (array) $databaseConnection->select( |
|
| 89 | + 'row' => (array)$databaseConnection->select( |
|
| 90 | 90 | ['*'], |
| 91 | 91 | 'tx_calendarize_domain_model_configuration', |
| 92 | 92 | ['uid' => $value] |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | { |
| 65 | 65 | switch ($configuration->getEndDateDynamic()) { |
| 66 | 66 | case Configuration::END_DYNAMIC_1_DAY: |
| 67 | - $callback = function ($entry) { |
|
| 67 | + $callback = function($entry) { |
|
| 68 | 68 | if ($entry['start_date'] instanceof \DateTime) { |
| 69 | 69 | $entry['end_date'] = clone $entry['start_date']; |
| 70 | 70 | $entry['end_date']->modify('+1 day'); |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | }; |
| 75 | 75 | break; |
| 76 | 76 | case Configuration::END_DYNAMIC_1_WEEK: |
| 77 | - $callback = function ($entry) { |
|
| 77 | + $callback = function($entry) { |
|
| 78 | 78 | if ($entry['start_date'] instanceof \DateTime) { |
| 79 | 79 | $entry['end_date'] = clone $entry['start_date']; |
| 80 | 80 | $entry['end_date']->modify('+1 week'); |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | }; |
| 85 | 85 | break; |
| 86 | 86 | case Configuration::END_DYNAMIC_END_WEEK: |
| 87 | - $callback = function ($entry) { |
|
| 87 | + $callback = function($entry) { |
|
| 88 | 88 | if ($entry['start_date'] instanceof \DateTime) { |
| 89 | 89 | $entry['end_date'] = clone $entry['start_date']; |
| 90 | 90 | $entry['end_date']->modify('monday next week'); |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | }; |
| 96 | 96 | break; |
| 97 | 97 | case Configuration::END_DYNAMIC_END_MONTH: |
| 98 | - $callback = function ($entry) { |
|
| 98 | + $callback = function($entry) { |
|
| 99 | 99 | if ($entry['start_date'] instanceof \DateTime) { |
| 100 | 100 | $entry['end_date'] = clone $entry['start_date']; |
| 101 | 101 | $entry['end_date']->modify('last day of this month'); |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | break; |
| 107 | 107 | case Configuration::END_DYNAMIC_END_YEAR: |
| 108 | 108 | |
| 109 | - $callback = function ($entry) { |
|
| 109 | + $callback = function($entry) { |
|
| 110 | 110 | if ($entry['start_date'] instanceof \DateTime) { |
| 111 | 111 | $entry['end_date'] = clone $entry['start_date']; |
| 112 | 112 | $entry['end_date']->setDate((int)$entry['end_date']->format('Y'), 12, 31); |
@@ -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 | } |
@@ -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 |
@@ -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 | |