diff --git a/Build/php-cs-fixer/config.php b/Build/php-cs-fixer/config.php
index a133432e8..58477b12e 100644
--- a/Build/php-cs-fixer/config.php
+++ b/Build/php-cs-fixer/config.php
@@ -14,8 +14,8 @@
'include' => [],
'scope' => 'all',
'strict' => true,
- ]
- ]
+ ],
+ ],
);
$config->getFinder()->in('Classes')->in('Configuration')->in('Tests');
return $config;
diff --git a/Classes/Controller/BackendModuleController.php b/Classes/Controller/BackendModuleController.php
index bf9768d97..e30fd8031 100644
--- a/Classes/Controller/BackendModuleController.php
+++ b/Classes/Controller/BackendModuleController.php
@@ -30,7 +30,7 @@ public function indexAction(): ResponseInterface
$this->addFlashMessage(
LocalizationUtility::translate(self::TRANSLATE_KEY_PREFIX . 'flash_message.missing_teas.message') ?? '',
LocalizationUtility::translate(self::TRANSLATE_KEY_PREFIX . 'flash_message.missing_teas.title') ?? '',
- ContextualFeedbackSeverity::WARNING
+ ContextualFeedbackSeverity::WARNING,
);
}
diff --git a/Classes/Upgrades/AbstractListTypeToCTypeUpdate.php b/Classes/Upgrades/AbstractListTypeToCTypeUpdate.php
index c166f5265..37d9d8d4b 100644
--- a/Classes/Upgrades/AbstractListTypeToCTypeUpdate.php
+++ b/Classes/Upgrades/AbstractListTypeToCTypeUpdate.php
@@ -186,6 +186,7 @@ protected function hasNoLegacyBackendGroupsExplicitAllowDenyConfiguration(): boo
/** @phpstan-ignore cast.int */
return (int)$queryBuilder->executeQuery()->fetchOne() === 0;
}
+
/** @phpstan-ignore missingType.iterableValue */
protected function getContentElementsToUpdate(string $listType): array
{
@@ -201,6 +202,7 @@ protected function getContentElementsToUpdate(string $listType): array
return $queryBuilder->executeQuery()->fetchAllAssociative();
}
+
/** @phpstan-ignore missingType.iterableValue */
protected function getBackendUserGroupsToUpdate(string $listType): array
{
@@ -266,21 +268,36 @@ protected function updateBackendUserGroups(): void
private function validateRequirements(): void
{
if ($this->getTitle() === '') {
- throw new \RuntimeException('The update class "' . static::class . '" must provide a title by extending "getTitle()"', 1727605675);
+ throw new \RuntimeException(
+ 'The update class "' . static::class . '" must provide a title by extending "getTitle()"',
+ 1727605675,
+ );
}
if ($this->getDescription() === '') {
- throw new \RuntimeException('The update class "' . static::class . '" must provide a description by extending "getDescription()"', 1727605676);
+ throw new \RuntimeException(
+ 'The update class "' . static::class . '" must provide a description by extending "getDescription()"',
+ 1727605676,
+ );
}
if ($this->getListTypeToCTypeMapping() === []) {
- throw new \RuntimeException('The update class "' . static::class . '" does not provide a "list_type" to "CType" migration mapping', 1727605677);
+ throw new \RuntimeException(
+ 'The update class "' . static::class . '" does not provide a "list_type" to "CType" migration mapping',
+ 1727605677,
+ );
}
foreach ($this->getListTypeToCTypeMapping() as $listType => $contentElement) {
if ($listType === '') {
- throw new \RuntimeException('Invalid mapping item "' . $listType . '" in class "' . static::class, 1727605678);
+ throw new \RuntimeException(
+ 'Invalid mapping item "' . $listType . '" in class "' . static::class,
+ 1727605678,
+ );
}
if ($contentElement === '') {
- throw new \RuntimeException('Invalid mapping item "' . $contentElement . '" in class "' . static::class, 1727605679);
+ throw new \RuntimeException(
+ 'Invalid mapping item "' . $contentElement . '" in class "' . static::class,
+ 1727605679,
+ );
}
}
}
diff --git a/Resources/Private/Language/locallang_index_mod.xlf b/Resources/Private/Language/locallang_index_mod.xlf
index daf90546e..8b3cc1c09 100644
--- a/Resources/Private/Language/locallang_index_mod.xlf
+++ b/Resources/Private/Language/locallang_index_mod.xlf
@@ -1,29 +1,29 @@