@@ -167,7 +167,7 @@ |
||
167 | 167 | // This callback filters empty strings, array and null but keeps zero integers |
168 | 168 | $parameters = ArrayUtility::filterRecursive( |
169 | 169 | $parameters, |
170 | - function ($item) { |
|
170 | + function($item) { |
|
171 | 171 | return $item !== '' && $item !== [] && $item !== null; |
172 | 172 | } |
173 | 173 | ); |
@@ -155,7 +155,7 @@ |
||
155 | 155 | $incompleteWizards = $upgradeWizardsService->getUpgradeWizardsList(); |
156 | 156 | $incompleteWizards = array_filter( |
157 | 157 | $incompleteWizards, |
158 | - function ($wizard) { |
|
158 | + function($wizard) { |
|
159 | 159 | return $wizard['shouldRenderWizard']; |
160 | 160 | } |
161 | 161 | ); |
@@ -196,7 +196,7 @@ |
||
196 | 196 | $attributes = array_merge($attributes, $options['additionalAttributes']); |
197 | 197 | } |
198 | 198 | if (isset($options['data']) && is_array($options['data'])) { |
199 | - array_walk($options['data'], function (&$value, $key) use (&$attributes) { |
|
199 | + array_walk($options['data'], function(&$value, $key) use (&$attributes) { |
|
200 | 200 | $attributes['data-' . $key] = $value; |
201 | 201 | }); |
202 | 202 | } |
@@ -180,7 +180,7 @@ |
||
180 | 180 | if (isset($options['data']) && is_array($options['data'])) { |
181 | 181 | array_walk( |
182 | 182 | $options['data'], |
183 | - function (&$value, $key) use (&$attributes) { |
|
183 | + function(&$value, $key) use (&$attributes) { |
|
184 | 184 | $attributes['data-' . $key] = $value; |
185 | 185 | } |
186 | 186 | ); |
@@ -88,8 +88,8 @@ |
||
88 | 88 | public function getDescription(): string |
89 | 89 | { |
90 | 90 | return 'The extension "rsaauth" adds a public/private key based encryption for Backend and Frontend' |
91 | - . ' login passwords. The approach is limited and has various flaws. The extension is fully' |
|
92 | - . ' obsolete if the instance uses HTTPS.'; |
|
91 | + . ' login passwords. The approach is limited and has various flaws. The extension is fully' |
|
92 | + . ' obsolete if the instance uses HTTPS.'; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -88,7 +88,7 @@ |
||
88 | 88 | public function getDescription(): string |
89 | 89 | { |
90 | 90 | return 'The extension "taskcenter" adds a view for Backend users to run configured tasks.' |
91 | - . ' It is only useful if properly configured.'; |
|
91 | + . ' It is only useful if properly configured.'; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -89,7 +89,7 @@ |
||
89 | 89 | '/', |
90 | 90 | (string)$fileInfo->file($this->getPathname(), FILEINFO_EXTENSION) |
91 | 91 | ), |
92 | - function ($item) { |
|
92 | + function($item) { |
|
93 | 93 | // filter invalid items ('???' is used if not found in magic.mime database) |
94 | 94 | return $item !== '' && $item !== '???'; |
95 | 95 | } |
@@ -1370,7 +1370,7 @@ discard block |
||
1370 | 1370 | // sanitize module names in internal 'paths' |
1371 | 1371 | $internalPathModuleNames = array_keys($requireJsConfig['internal']['paths'] ?? []); |
1372 | 1372 | $sanitizedInternalPathModuleNames = array_map( |
1373 | - function ($moduleName) { |
|
1373 | + function($moduleName) { |
|
1374 | 1374 | // trim spaces and slashes & add ending slash |
1375 | 1375 | return trim($moduleName, ' /') . '/'; |
1376 | 1376 | }, |
@@ -1470,7 +1470,7 @@ discard block |
||
1470 | 1470 | { |
1471 | 1471 | return array_filter( |
1472 | 1472 | $array, |
1473 | - function (string $key) use ($keys, $keep) { |
|
1473 | + function(string $key) use ($keys, $keep) { |
|
1474 | 1474 | return in_array($key, $keys, true) === $keep; |
1475 | 1475 | }, |
1476 | 1476 | ARRAY_FILTER_USE_KEY |
@@ -361,14 +361,14 @@ discard block |
||
361 | 361 | { |
362 | 362 | foreach ($newState as $var => $value) { |
363 | 363 | switch ($var) { |
364 | - case 'locales': |
|
365 | - break; |
|
366 | - case 'metaTagRegistry': |
|
367 | - $this->metaTagRegistry->updateState($value); |
|
368 | - break; |
|
369 | - default: |
|
370 | - $this->{$var} = $value; |
|
371 | - break; |
|
364 | + case 'locales': |
|
365 | + break; |
|
366 | + case 'metaTagRegistry': |
|
367 | + $this->metaTagRegistry->updateState($value); |
|
368 | + break; |
|
369 | + default: |
|
370 | + $this->{$var} = $value; |
|
371 | + break; |
|
372 | 372 | } |
373 | 373 | } |
374 | 374 | } |
@@ -382,14 +382,14 @@ discard block |
||
382 | 382 | $state = []; |
383 | 383 | foreach (get_object_vars($this) as $var => $value) { |
384 | 384 | switch ($var) { |
385 | - case 'locales': |
|
386 | - break; |
|
387 | - case 'metaTagRegistry': |
|
388 | - $state[$var] = $this->metaTagRegistry->getState(); |
|
389 | - break; |
|
390 | - default: |
|
391 | - $state[$var] = $value; |
|
392 | - break; |
|
385 | + case 'locales': |
|
386 | + break; |
|
387 | + case 'metaTagRegistry': |
|
388 | + $state[$var] = $this->metaTagRegistry->getState(); |
|
389 | + break; |
|
390 | + default: |
|
391 | + $state[$var] = $value; |
|
392 | + break; |
|
393 | 393 | } |
394 | 394 | } |
395 | 395 | return $state; |
@@ -470,7 +470,7 @@ |
||
470 | 470 | protected function getLanguageFallbackChain(?LanguageAspect $languageAspect): array |
471 | 471 | { |
472 | 472 | $languageAspect = $languageAspect ?? $this->context->getAspect('language'); |
473 | - return array_filter($languageAspect->getFallbackChain(), function ($item) { |
|
473 | + return array_filter($languageAspect->getFallbackChain(), function($item) { |
|
474 | 474 | return MathUtility::canBeInterpretedAsInteger($item); |
475 | 475 | }); |
476 | 476 | } |