diff --git a/Build/phpunit/FunctionalTests.xml b/Build/phpunit/FunctionalTests.xml
index 870e4eaa1473d76f25fe0a61cb9866746e11dd61..e08799c31f421f467e26efa0e56abdf469969ac8 100644
--- a/Build/phpunit/FunctionalTests.xml
+++ b/Build/phpunit/FunctionalTests.xml
@@ -15,10 +15,11 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
     backupGlobals="true"
+    beStrictAboutTestsThatDoNotTestAnything="false"
     bootstrap="FunctionalTestsBootstrap.php"
+    cacheDirectory=".phpunit.cache"
     cacheResult="false"
     colors="true"
-    beStrictAboutTestsThatDoNotTestAnything="false"
     displayDetailsOnTestsThatTriggerDeprecations="true"
     displayDetailsOnTestsThatTriggerErrors="true"
     displayDetailsOnTestsThatTriggerNotices="true"
@@ -27,16 +28,15 @@
     failOnNotice="true"
     failOnRisky="true"
     failOnWarning="true"
-    cacheDirectory=".phpunit.cache"
 >
-  <testsuites>
-    <testsuite name="Core tests">
-      <directory>../../typo3/sysext/*/Tests/Functional/</directory>
-    </testsuite>
-  </testsuites>
-  <php>
-    <ini name="display_errors" value="1"/>
-    <ini name="error_reporting" value="E_ALL"/>
-    <env name="TYPO3_CONTEXT" value="Testing"/>
-  </php>
+    <testsuites>
+        <testsuite name="Core tests">
+            <directory>../../typo3/sysext/*/Tests/Functional/</directory>
+        </testsuite>
+    </testsuites>
+    <php>
+        <ini name="display_errors" value="1"/>
+        <ini name="error_reporting" value="E_ALL"/>
+        <env name="TYPO3_CONTEXT" value="Testing"/>
+    </php>
 </phpunit>
diff --git a/Build/phpunit/FunctionalTestsDeprecated.xml b/Build/phpunit/FunctionalTestsDeprecated.xml
index 7758f91c4695a1fa926c4f3df177306e9e8bfab4..c2fc9d7f910f416da28e67b15148a9f2beba07a9 100644
--- a/Build/phpunit/FunctionalTestsDeprecated.xml
+++ b/Build/phpunit/FunctionalTestsDeprecated.xml
@@ -15,10 +15,11 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
     backupGlobals="true"
+    beStrictAboutTestsThatDoNotTestAnything="false"
     bootstrap="FunctionalTestsBootstrap.php"
+    cacheDirectory=".phpunit.cache"
     cacheResult="false"
     colors="true"
-    beStrictAboutTestsThatDoNotTestAnything="false"
     displayDetailsOnTestsThatTriggerDeprecations="true"
     displayDetailsOnTestsThatTriggerErrors="true"
     displayDetailsOnTestsThatTriggerNotices="true"
@@ -26,16 +27,15 @@
     failOnNotice="true"
     failOnRisky="true"
     failOnWarning="true"
-    cacheDirectory=".phpunit.cache"
 >
-  <testsuites>
-    <testsuite name="Core tests">
-      <directory>../../typo3/sysext/*/Tests/FunctionalDeprecated/</directory>
-    </testsuite>
-  </testsuites>
-  <php>
-    <ini name="display_errors" value="1"/>
-    <ini name="error_reporting" value="E_ALL"/>
-    <env name="TYPO3_CONTEXT" value="Testing"/>
-  </php>
+    <testsuites>
+        <testsuite name="Core tests">
+            <directory>../../typo3/sysext/*/Tests/FunctionalDeprecated/</directory>
+        </testsuite>
+    </testsuites>
+    <php>
+        <ini name="display_errors" value="1"/>
+        <ini name="error_reporting" value="E_ALL"/>
+        <env name="TYPO3_CONTEXT" value="Testing"/>
+    </php>
 </phpunit>
diff --git a/Build/phpunit/UnitTests.xml b/Build/phpunit/UnitTests.xml
index 3a4797c44770df5e0fd5603eed954c5625d13316..991709e73bd0d82672376126ea7cb0bf2d0def7c 100644
--- a/Build/phpunit/UnitTests.xml
+++ b/Build/phpunit/UnitTests.xml
@@ -15,10 +15,11 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
     backupGlobals="true"
+    beStrictAboutTestsThatDoNotTestAnything="false"
     bootstrap="UnitTestsBootstrap.php"
+    cacheDirectory=".phpunit.cache"
     cacheResult="false"
     colors="true"
-    beStrictAboutTestsThatDoNotTestAnything="false"
     displayDetailsOnTestsThatTriggerDeprecations="true"
     displayDetailsOnTestsThatTriggerErrors="true"
     displayDetailsOnTestsThatTriggerNotices="true"
@@ -27,16 +28,15 @@
     failOnNotice="true"
     failOnRisky="true"
     failOnWarning="true"
-    cacheDirectory=".phpunit.cache"
 >
-  <testsuites>
-    <testsuite name="Core tests">
-      <directory>../../typo3/sysext/*/Tests/Unit/</directory>
-    </testsuite>
-  </testsuites>
-  <php>
-    <ini name="display_errors" value="1"/>
-    <ini name="error_reporting" value="E_ALL"/>
-    <env name="TYPO3_CONTEXT" value="Testing"/>
-  </php>
+    <testsuites>
+        <testsuite name="Core tests">
+            <directory>../../typo3/sysext/*/Tests/Unit/</directory>
+        </testsuite>
+    </testsuites>
+    <php>
+        <ini name="display_errors" value="1"/>
+        <ini name="error_reporting" value="E_ALL"/>
+        <env name="TYPO3_CONTEXT" value="Testing"/>
+    </php>
 </phpunit>
diff --git a/Build/phpunit/UnitTestsDeprecated.xml b/Build/phpunit/UnitTestsDeprecated.xml
index cc60626ef159dd34d350518521c6d86059ba2d2c..9768f9ffd163cfc10fa0d56bd304eda4ac53b798 100644
--- a/Build/phpunit/UnitTestsDeprecated.xml
+++ b/Build/phpunit/UnitTestsDeprecated.xml
@@ -19,27 +19,27 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
     backupGlobals="true"
+    beStrictAboutTestsThatDoNotTestAnything="false"
     bootstrap="UnitTestsBootstrap.php"
+    cacheDirectory=".phpunit.cache"
     cacheResult="false"
     colors="true"
     displayDetailsOnTestsThatTriggerDeprecations="true"
     displayDetailsOnTestsThatTriggerErrors="true"
     displayDetailsOnTestsThatTriggerNotices="true"
     displayDetailsOnTestsThatTriggerWarnings="true"
-    beStrictAboutTestsThatDoNotTestAnything="false"
     failOnNotice="true"
     failOnRisky="true"
     failOnWarning="true"
-    cacheDirectory=".phpunit.cache"
 >
-  <testsuites>
-    <testsuite name="Core tests">
-      <directory>../../typo3/sysext/*/Tests/UnitDeprecated/</directory>
-    </testsuite>
-  </testsuites>
-  <php>
-    <ini name="display_errors" value="1"/>
-    <ini name="error_reporting" value="E_ALL"/>
-    <env name="TYPO3_CONTEXT" value="Testing"/>
-  </php>
+    <testsuites>
+        <testsuite name="Core tests">
+            <directory>../../typo3/sysext/*/Tests/UnitDeprecated/</directory>
+        </testsuite>
+    </testsuites>
+    <php>
+        <ini name="display_errors" value="1"/>
+        <ini name="error_reporting" value="E_ALL"/>
+        <env name="TYPO3_CONTEXT" value="Testing"/>
+    </php>
 </phpunit>