From 997722b82a8ec2cc64d90324fafec36a1ef6ce7e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20B=C3=BCrk?= <stefan@buerk.tech>
Date: Sun, 16 Jan 2022 21:49:36 +0100
Subject: [PATCH] [TASK] Revamp phpstan config and handling
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

We currently have the situation that phpstan is
hard to update and maintain due to the phpstan
config file that sets very specific rulesets.

This is unfortunate since phpstan tends to change
and rename rules at will.

The general usage API of phpstan is basically as
follows: Have a slim config file that sets the
basic level. Then maintain a 'baseline' file that
lists violations, using the --generate-baseline
command option. The todo job for people working
on phpstan errors is then to look at the baseline
file, pick up some issues, fix them, then re-generate
baseline. When baseline is small enough, the level
is raised, a new baseline is generated, and the
fix-job starts again.

The patch does exactly this: The existing config
is dropped and runTests.sh receives a command to
generate baseline.

With this in place, we can easily raise phpstan
to a PHP 8.1 compatible version:

> composer req friendsoftypo3/phpstan-typo3:"^0.9.0" --dev
> composer req phpstan/phpstan:"^1.4.3" --dev
> Build/Script/runTests.sh -s phpstanGenerateBaseline

This initialy adds about 4000 ignores to the baseline
with level 3, but we can reduce this drastically with
just a couple of dedicated patches, soon.

The config is heavily streamlined and for instance does
*not* ignore tests anymore, which actually finds a ton
of misuses and bugs within tests and classes.

Resolves: #96675
Releases: main, 11.5
Change-Id: I0e7ff7aa796e59a2c5eedde0b673f741f8b87dea
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/73037
Tested-by: core-ci <typo3@b13.com>
Tested-by: Daniel Goerz <daniel.goerz@posteo.de>
Tested-by: Stefan Bürk <stefan@buerk.tech>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: Stefan Bürk <stefan@buerk.tech>
Reviewed-by: Daniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
---
 Build/Scripts/runTests.sh                     |     9 +-
 Build/gitlab-ci/nightly/integrity.yml         |     3 +-
 Build/gitlab-ci/pre-merge/integrity.yml       |     3 +-
 Build/phpstan.level3.neon                     |   100 -
 Build/phpstan.level4.neon                     |   188 -
 Build/phpstan.level5.neon                     |    20 -
 Build/phpstan.level6.neon                     |    16 -
 Build/phpstan.level7.neon                     |     6 -
 Build/phpstan.level8.neon                     |     5 -
 Build/phpstan.php8config.php                  |    68 -
 Build/phpstan/phpstan-baseline.neon           | 10082 ++++++++++++++++
 Build/phpstan/phpstan-constants.php           |     4 +
 Build/phpstan/phpstan.neon                    |    27 +
 Build/testing-docker/local/docker-compose.yml |    17 +-
 composer.json                                 |     4 +-
 composer.lock                                 |    32 +-
 phpstan.neon                                  |   227 -
 .../Classes/Tca/SelectElementItems.php        |     4 +-
 .../Unit/Database/Mocks/MockPlatform.php      |    25 +-
 .../Mail/Fixtures/FakeValidSpoolFixture.php   |     3 +-
 .../Tests/Unit/Reflection/ClassSchemaTest.php |     1 +
 .../Updates/PrerequisiteCollection.php        |     5 +-
 22 files changed, 10166 insertions(+), 683 deletions(-)
 delete mode 100644 Build/phpstan.level3.neon
 delete mode 100644 Build/phpstan.level4.neon
 delete mode 100644 Build/phpstan.level5.neon
 delete mode 100644 Build/phpstan.level6.neon
 delete mode 100644 Build/phpstan.level7.neon
 delete mode 100644 Build/phpstan.level8.neon
 delete mode 100644 Build/phpstan.php8config.php
 create mode 100644 Build/phpstan/phpstan-baseline.neon
 create mode 100644 Build/phpstan/phpstan-constants.php
 create mode 100644 Build/phpstan/phpstan.neon
 delete mode 100644 phpstan.neon

diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh
index cab4b8096be1..e7419bf7cb36 100755
--- a/Build/Scripts/runTests.sh
+++ b/Build/Scripts/runTests.sh
@@ -111,6 +111,7 @@ Options:
             - lintHtml: HTML linting
             - listExceptionCodes: list core exception codes in JSON format
             - phpstan: phpstan tests
+            - phpstanGenerateBaseline: regenerate phpstan baseline, handy after phpstan updates
             - unit (default): PHP unit tests
             - unitDeprecated: deprecated PHP unit tests
             - unitJavascript: JavaScript unit tests
@@ -712,13 +713,17 @@ case ${TEST_SUITE} in
         docker-compose down
         ;;
     phpstan)
-        # @todo remove hardcoded php version when phpstan is raised and runnable with PHP8.1
-        PHP_VERSION="8.0"
         setUpDockerComposeDotEnv
         docker-compose run phpstan
         SUITE_EXIT_CODE=$?
         docker-compose down
         ;;
+    phpstanGenerateBaseline)
+        setUpDockerComposeDotEnv
+        docker-compose run phpstan_generate_baseline
+        SUITE_EXIT_CODE=$?
+        docker-compose down
+        ;;
     unit)
         setUpDockerComposeDotEnv
         docker-compose run unit
diff --git a/Build/gitlab-ci/nightly/integrity.yml b/Build/gitlab-ci/nightly/integrity.yml
index f167efdaa9fa..c2d09a154f08 100644
--- a/Build/gitlab-ci/nightly/integrity.yml
+++ b/Build/gitlab-ci/nightly/integrity.yml
@@ -81,8 +81,7 @@ lint scss ts html:
     - Build/Scripts/runTests.sh -s lintTypescript
     - Build/Scripts/runTests.sh -s lintHtml
 
-# @todo Hardcoded enforced to PHP8.0 in Build/Scripts/runTests.sh - change this after phpstan:^1.2 raised.
-phpstan php 8.0:
+phpstan php 8.1:
   stage: integrity
   needs: []
   only:
diff --git a/Build/gitlab-ci/pre-merge/integrity.yml b/Build/gitlab-ci/pre-merge/integrity.yml
index afb15c7009e6..9d3fa113dd62 100644
--- a/Build/gitlab-ci/pre-merge/integrity.yml
+++ b/Build/gitlab-ci/pre-merge/integrity.yml
@@ -60,8 +60,7 @@ lint scss ts html pre-merge:
     - Build/Scripts/runTests.sh -s lintTypescript
     - Build/Scripts/runTests.sh -s lintHtml
 
-# @todo Hardcoded enforced to PHP8.0 in Build/Scripts/runTests.sh - change this after phpstan:^1.2 raise.
-phpstan php 8.0 pre-merge:
+phpstan php 8.1 pre-merge:
   stage: main
   except:
     refs:
diff --git a/Build/phpstan.level3.neon b/Build/phpstan.level3.neon
deleted file mode 100644
index 64d3577656b6..000000000000
--- a/Build/phpstan.level3.neon
+++ /dev/null
@@ -1,100 +0,0 @@
-rules:
-	- PHPStan\Rules\Arrays\AppendedArrayItemTypeRule
-	- PHPStan\Rules\Arrays\IterableInForeachRule
-	- PHPStan\Rules\Arrays\OffsetAccessAssignmentRule
-	- PHPStan\Rules\Arrays\OffsetAccessAssignOpRule
-	- PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule
-	- PHPStan\Rules\Arrays\UnpackIterableInArrayRule
-	- PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule
-	- PHPStan\Rules\Functions\ClosureReturnTypeRule
-	- PHPStan\Rules\Generators\YieldTypeRule
-#	- PHPStan\Rules\Methods\ReturnTypeRule
-	- PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule
-	- PHPStan\Rules\Properties\TypesAssignedToPropertiesRule
-	- PHPStan\Rules\Variables\ThrowTypeRule
-	- PHPStan\Rules\Variables\VariableCloningRule
-
-conditionalTags:
-	PHPStan\Rules\Arrays\ArrayDestructuringRule:
-		phpstan.rules.rule: %featureToggles.arrayDestructuring%
-
-	PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule:
-		phpstan.rules.rule: %featureToggles.throwsVoid%
-
-	PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule:
-		phpstan.rules.rule: %featureToggles.throwsVoid%
-
-parameters:
-	checkPhpDocMethodSignatures: true
-
-services:
-	-
-		class: PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule
-		arguments:
-			checkUnionTypes: %checkUnionTypes%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Arrays\ArrayDestructuringRule
-
-	-
-		class: PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule
-		arguments:
-			reportMaybes: %reportMaybes%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule
-		arguments:
-			reportMaybes: %reportMaybes%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule
-		arguments:
-			reportMaybes: %reportMaybes%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule
-		arguments:
-			exceptionTypeResolver: @exceptionTypeResolver
-			missingCheckedExceptionInThrows: %exceptions.check.missingCheckedExceptionInThrows%
-
-	-
-		class: PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule
-		arguments:
-			exceptionTypeResolver: @exceptionTypeResolver
-			missingCheckedExceptionInThrows: %exceptions.check.missingCheckedExceptionInThrows%
-
-#	-
-#		class: PHPStan\Rules\Functions\ReturnTypeRule
-#		arguments:
-#			functionReflector: @betterReflectionFunctionReflector
-#
-#		tags:
-#			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Generators\YieldFromTypeRule
-		arguments:
-			reportMaybes: %reportMaybes%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Generators\YieldInGeneratorRule
-		arguments:
-			reportMaybes: %reportMaybes%
-
-		tags:
-			- phpstan.rules.rule
diff --git a/Build/phpstan.level4.neon b/Build/phpstan.level4.neon
deleted file mode 100644
index 67148fabe27d..000000000000
--- a/Build/phpstan.level4.neon
+++ /dev/null
@@ -1,188 +0,0 @@
-includes:
-	- phpstan.level3.neon
-
-rules:
-#	- PHPStan\Rules\Arrays\DeadForeachRule
-#	- PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule
-	- PHPStan\Rules\DeadCode\NoopRule
-#	- PHPStan\Rules\DeadCode\UnreachableStatementRule
-	- PHPStan\Rules\Exceptions\DeadCatchRule
-#	- PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule
-	- PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule
-	- PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule
-	- PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule
-	- PHPStan\Rules\Methods\NullsafeMethodCallRule
-	- PHPStan\Rules\Properties\NullsafePropertyFetchRule
-	- PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule
-	- PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule
-	- PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule
-
-conditionalTags:
-	PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule:
-		phpstan.rules.rule: %featureToggles.preciseExceptionTracking%
-
-	PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule:
-		phpstan.rules.rule: %featureToggles.preciseExceptionTracking%
-
-	PHPStan\Rules\DeadCode\UnusedPrivateConstantRule:
-		phpstan.rules.rule: %featureToggles.unusedClassElements%
-
-	PHPStan\Rules\DeadCode\UnusedPrivateMethodRule:
-		phpstan.rules.rule: %featureToggles.unusedClassElements%
-
-	PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule:
-		phpstan.rules.rule: %featureToggles.unusedClassElements%
-
-parameters:
-	checkAdvancedIsset: true
-
-services:
-	-
-		class: PHPStan\Rules\Classes\ImpossibleInstanceOfRule
-		arguments:
-			checkAlwaysTrueInstanceof: %checkAlwaysTrueInstanceof%
-			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-
-		tags:
-			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\BooleanAndConstantConditionRule
-#		arguments:
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\BooleanOrConstantConditionRule
-#		arguments:
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\BooleanNotConstantConditionRule
-#		arguments:
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\DeadCode\UnusedPrivateConstantRule
-
-	-
-		class: PHPStan\Rules\DeadCode\UnusedPrivateMethodRule
-
-	-
-		class: PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule
-		arguments:
-			alwaysWrittenTags: %propertyAlwaysWrittenTags%
-			alwaysReadTags: %propertyAlwaysReadTags%
-			checkUninitializedProperties: %checkUninitializedProperties%
-
-#	-
-#		class: PHPStan\Rules\Comparison\ElseIfConstantConditionRule
-#		arguments:
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\IfConstantConditionRule
-#		arguments:
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule
-#		arguments:
-#			checkAlwaysTrueCheckTypeFunctionCall: %checkAlwaysTrueCheckTypeFunctionCall%
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule
-		arguments:
-			checkAlwaysTrueCheckTypeFunctionCall: %checkAlwaysTrueCheckTypeFunctionCall%
-			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule
-		arguments:
-			checkAlwaysTrueCheckTypeFunctionCall: %checkAlwaysTrueCheckTypeFunctionCall%
-			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Comparison\MatchExpressionRule
-		arguments:
-			checkAlwaysTrueStrictComparison: %checkAlwaysTrueStrictComparison%
-		tags:
-			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule
-#		arguments:
-#			checkAlwaysTrueStrictComparison: %checkAlwaysTrueStrictComparison%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule
-		arguments:
-			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-
-		tags:
-			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\UnreachableIfBranchesRule
-#		arguments:
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-#	-
-#		class: PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule
-#		arguments:
-#			treatPhpDocTypesAsCertain: %treatPhpDocTypesAsCertain%
-#
-#		tags:
-#			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule
-
-	-
-		class: PHPStan\Rules\Exceptions\DeadCatchRule
-		arguments:
-			bleedingEdge: %featureToggles.bleedingEdge%
-
-		tags:
-			- phpstan.rules.rule
-
-	-
-		class: PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule
-
-	-
-		class: PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule
-		arguments:
-			checkProtectedAndPublicMethods: %checkTooWideReturnTypesInProtectedAndPublicMethods%
-
-		tags:
-			- phpstan.rules.rule
diff --git a/Build/phpstan.level5.neon b/Build/phpstan.level5.neon
deleted file mode 100644
index 26b981e8d472..000000000000
--- a/Build/phpstan.level5.neon
+++ /dev/null
@@ -1,20 +0,0 @@
-includes:
-	- phpstan.level4.neon
-
-conditionalTags:
-	PHPStan\Rules\Functions\RandomIntParametersRule:
-		phpstan.rules.rule: %featureToggles.randomIntParameters%
-	PHPStan\Rules\DateTimeInstantiationRule:
-		phpstan.rules.rule: %featureToggles.dateTimeInstantiation%
-
-parameters:
-	checkFunctionArgumentTypes: true
-	checkArgumentsPassedByReference: true
-
-services:
-	-
-		class: PHPStan\Rules\Functions\RandomIntParametersRule
-		arguments:
-			reportMaybes: %reportMaybes%
-	-
-		class: PHPStan\Rules\DateTimeInstantiationRule
diff --git a/Build/phpstan.level6.neon b/Build/phpstan.level6.neon
deleted file mode 100644
index 49ff04232143..000000000000
--- a/Build/phpstan.level6.neon
+++ /dev/null
@@ -1,16 +0,0 @@
-includes:
-	- phpstan.level5.neon
-
-parameters:
-#	checkGenericClassInNonGenericObjectType: true
-	checkMissingIterableValueType: true
-#	checkMissingVarTagTypehint: true
-	checkMissingTypehints: true
-
-rules:
-	- PHPStan\Rules\Constants\MissingClassConstantTypehintRule
-	- PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule
-	- PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule
-#	- PHPStan\Rules\Methods\MissingMethodParameterTypehintRule
-#	- PHPStan\Rules\Methods\MissingMethodReturnTypehintRule
-#	- PHPStan\Rules\Properties\MissingPropertyTypehintRule
diff --git a/Build/phpstan.level7.neon b/Build/phpstan.level7.neon
deleted file mode 100644
index 24506925d0e5..000000000000
--- a/Build/phpstan.level7.neon
+++ /dev/null
@@ -1,6 +0,0 @@
-includes:
-	- phpstan.level6.neon
-
-parameters:
-	checkUnionTypes: true
-#	reportMaybes: true
diff --git a/Build/phpstan.level8.neon b/Build/phpstan.level8.neon
deleted file mode 100644
index 5966945c90be..000000000000
--- a/Build/phpstan.level8.neon
+++ /dev/null
@@ -1,5 +0,0 @@
-includes:
-	- phpstan.level7.neon
-
-parameters:
-	checkNullables: true
diff --git a/Build/phpstan.php8config.php b/Build/phpstan.php8config.php
deleted file mode 100644
index 030595e9cabe..000000000000
--- a/Build/phpstan.php8config.php
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-$config = [];
-
-if (PHP_MAJOR_VERSION === 8) {
-    $config['parameters']['ignoreErrors'] = [
-        [
-            'message' => '#^Parameter \\#1 \\$image of function imagedestroy expects GdImage, GdImage\\|false given\\.$#',
-            'path' => '%currentWorkingDirectory%/typo3/sysext/install/Classes/SystemEnvironment/Check.php',
-            'count' => 3,
-        ],
-        [
-            'message' => '#^Parameter \\#6 \\$color of function imagefilledrectangle expects int, int\\|false given\\.$#',
-            'path' => '%currentWorkingDirectory%/typo3/sysext/install/Classes/Controller/EnvironmentController.php',
-            'count' => 4,
-        ],
-        [
-            'message' => '#^Parameter \\#1 \\$image of function imagefilledrectangle expects GdImage, GdImage\\|false given\\.$#',
-            'path' => '%currentWorkingDirectory%/',
-            'count' => 4,
-        ],
-        [
-            'message' => '#^Parameter \\#1 \\$image of function imagegif expects GdImage, GdImage\\|false given\\.$#',
-            'path' => '%currentWorkingDirectory%/',
-            'count' => 1,
-        ],
-        [
-            'message' => '#^Parameter \\#6 \\$color of function imagettftext expects int, int\\|false given\\.$#',
-            'path' => '%currentWorkingDirectory%/',
-            'count' => 1,
-        ],
-        [
-            'message' => '#^Parameter \\#1 \\$image of function imagettftext expects GdImage, GdImage\\|false given\\.$#',
-            'path' => '%currentWorkingDirectory%/',
-            'count' => 1,
-        ],
-        [
-            'message' => '#^Parameter \\#1 \\$image of function imagecolorallocate expects GdImage, GdImage\\|false given\\.$#',
-            'path' => '%currentWorkingDirectory%/',
-            'count' => 6,
-        ],
-        [
-            'message' => '#^Parameter \\#1 \\$semaphore of function sem_release expects SysvSemaphore, resource\\|SysvSemaphore given\\.$#',
-            'path' => '%currentWorkingDirectory%/typo3/sysext/core/Classes/Locking/SemaphoreLockStrategy.php',
-            'count' => 1,
-        ],
-        [
-            'message' => '#^Parameter \\#1 \\$semaphore of function sem_remove expects SysvSemaphore, resource\\|SysvSemaphore given\\.$#',
-            'path' => '%currentWorkingDirectory%/typo3/sysext/core/Classes/Locking/SemaphoreLockStrategy.php',
-            'count' => 1,
-        ],
-        [
-            'message' => '#^Parameter \\#1 \\$separator of function explode expects non-empty-string, string given\\.$#',
-            'path' => '%currentWorkingDirectory%/',
-            'count' => 7,
-        ],
-        [
-            'message' => '#^Ternary operator condition is always true.$#',
-            'path' => '%currentWorkingDirectory%/typo3/sysext/core/Classes/Utility/GeneralUtility.php',
-            'count' => 3,
-        ],
-
-    ];
-}
-
-return $config;
diff --git a/Build/phpstan/phpstan-baseline.neon b/Build/phpstan/phpstan-baseline.neon
new file mode 100644
index 000000000000..54ffb10553f8
--- /dev/null
+++ b/Build/phpstan/phpstan-baseline.neon
@@ -0,0 +1,10082 @@
+parameters:
+	ignoreErrors:
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Context\\\\AspectInterface\\:\\:isPreview\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Classes/Modules/PreviewModule.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$uc\\.$#"
+			count: 2
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Middleware/AdminPanelInitiatorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTSConfig\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Middleware/AdminPanelInitiatorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:handle\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Middleware/AdminPanelInitiatorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:initialize\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Middleware/AdminPanelInitiatorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:withAttribute\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Middleware/AdminPanelInitiatorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAttribute\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Modules/PreviewModuleTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConfigurationOption\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Modules/PreviewModuleTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getMainConfiguration\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Modules/PreviewModuleTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryParams\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Modules/PreviewModuleTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:hasAspect\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Modules/PreviewModuleTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setAspect\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Modules/PreviewModuleTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$uc\\.$#"
+			count: 2
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getParsedBody\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSubModules\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTSConfig\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isEnabled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:onSubmit\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:writeUC\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Adminpanel\\\\Tests\\\\Unit\\\\Service\\\\ConfigurationServiceTest\\:\\:\\$beUserProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:orderByDependencies\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Service/ModuleLoaderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTSConfig\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/adminpanel/Tests/Unit/Utility/StateUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Clipboard/Clipboard.php
+
+		-
+			message: "#^Parameter \\$event of method TYPO3\\\\CMS\\\\Backend\\\\Composer\\\\InstallerScripts\\:\\:register\\(\\) has invalid type Composer\\\\Script\\\\Event\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Classes/Composer/InstallerScripts.php
+
+		-
+			message: "#^Method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:render\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Controller/ColumnSelectorController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getReadablePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php
+
+		-
+			message: "#^Variable \\$keys in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Controller/EditDocumentController.php
+
+		-
+			message: "#^Variable \\$subEntries in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Domain/Repository/Module/BackendModuleRepository.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\AbstractNode\\:\\:initializeResultArray\\(\\) should return array\\{string\\: array\\<int, string\\>, requireJsModules\\: array\\<int, TYPO3\\\\CMS\\\\Core\\\\Page\\\\JavaScriptModuleInstruction\\>\\} but returns array\\{additionalJavaScriptPost\\: array\\{\\}, additionalHiddenFields\\: array\\{\\}, additionalInlineLanguageLabelFiles\\: array\\{\\}, stylesheetFiles\\: array\\{\\}, requireJsModules\\: array\\{\\}, inlineData\\: array\\{\\}, html\\: ''\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/AbstractNode.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Behavior\\\\ReloadOnFieldChange\\:\\:toArray\\(\\) should return array\\{name\\: string, data\\?\\: string\\} but returns array\\{name\\: 'typo3\\-backend\\-form…', data\\: array\\{confirmation\\: bool\\}\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Behavior/ReloadOnFieldChange.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Behavior\\\\UpdateBitmaskOnFieldChange\\:\\:toArray\\(\\) should return array\\{name\\: string, data\\?\\: string\\} but returns array\\{name\\: 'typo3\\-backend\\-form…', data\\: array\\{position\\: int, total\\: int, invert\\: bool, elementName\\: string\\}\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Behavior/UpdateBitmaskOnFieldChange.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Behavior\\\\UpdateValueOnFieldChange\\:\\:toArray\\(\\) should return array\\{name\\: string, data\\?\\: string\\} but returns array\\{name\\: 'typo3\\-backend\\-form…', data\\: array\\{tableName\\: string, identifier\\: string, fieldName\\: string, elementName\\: string\\}\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Behavior/UpdateValueOnFieldChange.php
+
+		-
+			message: "#^Variable \\$cells in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Container/InlineRecordContainer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\AbstractFormElement\\:\\:formMaxWidth\\(\\) should return int but returns float\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/AbstractFormElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\AbstractFormElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/AbstractFormElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\GroupElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/GroupElement.php
+
+		-
+			message: "#^Method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:render\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/ImageManipulationElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\InputLinkElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/InputLinkElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\InputTextElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/InputTextElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\RadioElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/RadioElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\SelectCheckBoxElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/SelectCheckBoxElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\SelectMultipleSideBySideElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/SelectMultipleSideBySideElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\SelectSingleBoxElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/SelectSingleBoxElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\SelectSingleElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/SelectSingleElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\SelectTreeElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/SelectTreeElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\TextElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/TextElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\Element\\\\TextTableElement\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Element/TextTableElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FieldControl\\\\EditPopup\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/FieldControl/EditPopup.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FieldControl\\\\LinkPopup\\:\\:forwardOnFieldChangeQueryParams\\(\\) should return array\\<string, string\\> but returns array\\<string, array\\<int, array\\>\\|string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/FieldControl/LinkPopup.php
+
+		-
+			message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/FormDataProvider/TcaInputPlaceholders.php
+
+		-
+			message: "#^Variable \\$unstable in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/InlineStackProcessor.php
+
+		-
+			message: "#^Variable \\$pidList in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Form/Wizard/SuggestWizardDefaultReceiver.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Routing\\\\PreviewUriBuilder\\:\\:create\\(\\) should return static\\(TYPO3\\\\CMS\\\\Backend\\\\Routing\\\\PreviewUriBuilder\\) but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Routing/PreviewUriBuilder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Routing\\\\Router\\:\\:getRoutes\\(\\) should return iterable\\<TYPO3\\\\CMS\\\\Backend\\\\Routing\\\\Route\\> but returns ArrayIterator\\<string, Symfony\\\\Component\\\\Routing\\\\Route\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Routing/Router.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Search\\\\LiveSearch\\\\LiveSearch\\:\\:makeQuerySearchByTable\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\CompositeExpression but returns string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Search/LiveSearch/LiveSearch.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Search\\\\LiveSearch\\\\QueryParser\\:\\:getId\\(\\) should return int but returns string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Search/LiveSearch/QueryParser.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Tree\\\\TableConfiguration\\\\AbstractTableConfigurationTreeDataProvider\\:\\:getStartingPoints\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Security/CategoryPermissionsAspect.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Tree\\\\TableConfiguration\\\\AbstractTableConfigurationTreeDataProvider\\:\\:getTableName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Security/CategoryPermissionsAspect.php
+
+		-
+			message: "#^Variable \\$treeNodeCollection in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Security/CategoryPermissionsAspect.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getReadablePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Template/Components/MetaInformation.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Template\\\\ModuleTemplate\\:\\:getView\\(\\) should return TYPO3\\\\CMS\\\\Fluid\\\\View\\\\StandaloneView but returns TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Template/ModuleTemplate.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Tree/FileStorageTreeProvider.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Tree\\\\TreeNodeCollection\\:\\:asort\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Tree/TreeNodeCollection.php
+
+		-
+			message: "#^Variable \\$columnsConfiguration in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Tree/View/AbstractContentPagePositionMap.php
+
+		-
+			message: "#^Binary operation \"&\" between string and \\(float\\|int\\) results in an error\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Utility/BackendUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Utility\\\\BackendUtility\\:\\:daysUntil\\(\\) should return int but returns float\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Utility/BackendUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ProcessedFile\\:\\:getPublicUrl\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Utility/BackendUtility.php
+
+		-
+			message: "#^Variable \\$options in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Classes/Utility/BackendUtility.php
+
+		-
+			message: "#^Variable \\$value in isset\\(\\) always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/Utility/BackendUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\View\\\\BackendLayout\\\\ContentFetcher\\:\\:getRuntimeCache\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\VariableFrontend but returns TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\FrontendInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/View/BackendLayout/ContentFetcher.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:setRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/View/Drawing/BackendLayoutRenderer.php
+
+		-
+			message: "#^Variable \\$localizationButtons in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/View/PageLayoutView.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Backend\\\\View\\\\ArrayBrowser\\:\\:\\$dontLinkVar\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/ViewHelpers/ArrayBrowserViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/ViewHelpers/Link/EditRecordViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/ViewHelpers/Link/NewRecordViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/ViewHelpers/ModuleLinkViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:process\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/ViewHelpers/ThumbnailViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/ViewHelpers/Uri/EditRecordViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Classes/ViewHelpers/Uri/NewRecordViewHelper.php
+
+		-
+			message: "#^Access to an undefined property Psr\\\\Log\\\\LoggerInterface\\:\\:\\$records\\.$#"
+			count: 5
+			path: ../../typo3/sysext/backend/Tests/Functional/Authentication/PasswordResetTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:debug\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Authentication/PasswordResetTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:warning\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Functional/Authentication/PasswordResetTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\Clipboard\\\\ClipboardTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Functional/Clipboard/ClipboardTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Clipboard/ClipboardTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Clipboard/ClipboardTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Clipboard/ClipboardTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Clipboard/ClipboardTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Clipboard/ClipboardTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\Clipboard\\\\ClipboardTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Clipboard/ClipboardTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Controller\\\\FormInlineAjaxController\\:\\:createAction\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\Controller\\\\FormInlineAjaxControllerTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Controller\\\\Page\\\\LocalizationController\\:\\:_call\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/LocalizationControllerTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\Controller\\\\Page\\\\LocalizationControllerTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/LocalizationControllerTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\Controller\\\\Page\\\\TreeControllerTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\Controller\\\\Page\\\\TreeControllerTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/Page/TreeControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isEnabled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/ResetPasswordControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isValidResetTokenFromRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/ResetPasswordControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:resetPassword\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Controller/ResetPasswordControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:loadSingleTableDescription\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Form/MfaInfoElementTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Form/MfaInfoElementTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\View\\\\Drawing\\\\BackendLayoutRendererTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @param for parameter \\$context with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\View\\\\PageLayoutContext is not subtype of native type TYPO3\\\\CMS\\\\Backend\\\\View\\\\PageLayoutContext\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Functional\\\\View\\\\Drawing\\\\BackendLayoutRendererTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/Drawing/BackendLayoutRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Functional/View/PageLayoutViewTest.php
+
+		-
+			message: "#^PHPDoc tag @var above assignment does not specify variable name\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Configuration/BackendUserConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:checkLanguageAccess\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Configuration/TranslationConfigurationProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAllSites\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Configuration/TranslationConfigurationProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSiteByPageId\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Configuration/TranslationConfigurationProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Configuration/TranslationConfigurationProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/EditDocumentControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setUiBlock\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/EditDocumentControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconForFileExtension\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/FileControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/FileControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Controller\\\\File\\\\FileControllerTest\\:\\:\\$fileResourceMock with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/FileControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Controller\\\\File\\\\FileControllerTest\\:\\:\\$folderResourceMock with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/FileControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Controller\\\\File\\\\FileControllerTest\\:\\:\\$mockFileProcessor with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Core\\\\Utility\\\\File\\\\ExtendedFileUtility is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/FileControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Controller\\\\File\\\\FileControllerTest\\:\\:\\$request with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|Psr\\\\Http\\\\Message\\\\ServerRequestInterface is not subtype of native type Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/FileControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:render\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/ThumbnailControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Controller\\\\File\\\\ThumbnailControllerTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Controller\\\\File\\\\ThumbnailController is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/File/ThumbnailControllerTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$uc\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getParsedBody\\(\\)\\.$#"
+			count: 9
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/FormInlineAjaxControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryParams\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/FormSelectTreeAjaxControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSessionData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/LoginControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTSConfig\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/LoginControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:writeUC\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/LoginControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Backend\\\\Controller\\\\SwitchUserController\\:\\:_call\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/SwitchUserControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getParsedBody\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/Wizard/SuggestWizardControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:parseDataStructureByIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Controller/Wizard/SuggestWizardControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Container/ListOfFieldsContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Container/ListOfFieldsContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Container/PaletteAndSingleContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:loadSingleTableDescription\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Container/PaletteAndSingleContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Container/PaletteAndSingleContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Container/PaletteAndSingleContainerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 4 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Element/AbstractFormElementTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Element/InputDateTimeElementTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIcon\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Element/InputDateTimeElementTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Element/InputDateTimeElementTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconForRecord\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FieldWizard/TableListTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FieldWizard/TableListTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FieldWizard/TableListTest.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeElements\\\\BarElement has an unused parameter \\$data\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeElements/BarElement.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeElements\\\\BarElement has an unused parameter \\$nodeFactory\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeElements/BarElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeElements\\\\BarElement\\:\\:render\\(\\) should return array but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeElements/BarElement.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeElements\\\\FooElement has an unused parameter \\$data\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeElements/FooElement.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeElements\\\\FooElement has an unused parameter \\$nodeFactory\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeElements/FooElement.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeElements\\\\FooElement\\:\\:render\\(\\) should return array but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeElements/FooElement.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeResolvers\\\\BarResolver has an unused parameter \\$data\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeResolvers/BarResolver.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeResolvers\\\\BarResolver has an unused parameter \\$nodeFactory\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeResolvers/BarResolver.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeResolvers\\\\FooResolver has an unused parameter \\$data\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeResolvers/FooResolver.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\Fixtures\\\\NodeFactory\\\\NodeResolvers\\\\FooResolver has an unused parameter \\$nodeFactory\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/Fixtures/NodeFactory/NodeResolvers/FooResolver.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:compile\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataCompilerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataCompilerTest\\:\\:\\$formDataGroupProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FormDataGroupInterface is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataCompilerTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/FlexFormSegmentTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/FlexFormSegmentTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/OnTheFlyTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/OnTheFlyTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/OrderedProviderListTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/OrderedProviderListTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/SiteConfigurationDataGroupTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/SiteConfigurationDataGroupTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/TcaDatabaseRecordTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/TcaDatabaseRecordTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/TcaInputPlaceholderRecordTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/TcaInputPlaceholderRecordTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/TcaSelectTreeAjaxFieldDataTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataGroup/TcaSelectTreeAjaxFieldDataTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:addData\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseDefaultLanguagePageRowTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabaseDefaultLanguagePageRowTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FormDataProvider\\\\DatabaseDefaultLanguagePageRow is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseDefaultLanguagePageRowTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:addData\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseEditRowTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabaseEditRowTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FormDataProvider\\\\DatabaseEditRow is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseEditRowTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:addData\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseLanguageRowsTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabaseLanguageRowsTest\\:\\:\\$beUserProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseLanguageRowsTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabaseLanguageRowsTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FormDataProvider\\\\DatabaseLanguageRows is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseLanguageRowsTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:addData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabasePageLanguageOverlayRowsTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabasePageLanguageOverlayRowsTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FormDataProvider\\\\DatabasePageLanguageOverlayRows is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabasePageLanguageOverlayRowsTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:addData\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseParentPageRowTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabaseParentPageRowTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FormDataProvider\\\\DatabaseParentPageRow is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseParentPageRowTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:addData\\(\\)\\.$#"
+			count: 14
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseRecordTypeValueTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabaseRecordTypeValueTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\Form\\\\FormDataProvider\\\\DatabaseRecordTypeValue is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseRecordTypeValueTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAvailableLanguages\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseSystemLanguageRowsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFlagIdentifier\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseSystemLanguageRowsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLanguageId\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseSystemLanguageRowsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTitle\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseSystemLanguageRowsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTwoLetterIsoCode\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseSystemLanguageRowsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseSystemLanguageRowsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:calcPerms\\(\\)\\.$#"
+			count: 12
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseUserPermissionCheckTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:check\\(\\)\\.$#"
+			count: 19
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseUserPermissionCheckTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isAdmin\\(\\)\\.$#"
+			count: 18
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseUserPermissionCheckTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:recordEditAccessInternals\\(\\)\\.$#"
+			count: 11
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseUserPermissionCheckTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\DatabaseUserPermissionCheckTest\\:\\:\\$beUserProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/DatabaseUserPermissionCheckTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on bool\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/EvaluateDisplayConditionsTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$processedTcaFieldToBeRemovedPath\\)\\: Unexpected token \"\\$processedTcaFieldToBeRemovedPath\", expected type at offset 122$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/EvaluateDisplayConditionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifier\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/SiteDatabaseEditRowTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSiteByRootPageId\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/SiteDatabaseEditRowTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:load\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/SiteDatabaseEditRowTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSiteByPageId\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/SiteResolvingTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaCheckboxItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaCheckboxItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:shouldNotBeCalled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaCheckboxItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:willReturn\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaCheckboxItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaCheckboxItemsTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaCheckboxItemsTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$lang\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaColumnsProcessFieldDescriptionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaColumnsProcessFieldDescriptionsTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$lang\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaColumnsProcessFieldLabelsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaColumnsProcessFieldLabelsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\FrontendInterface\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaFlexPrepareTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:checkLanguageAccess\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaFlexProcessTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isAdmin\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaFlexProcessTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaFlexProcessTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on string\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaFlexProcessTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\TcaFlexProcessTest\\:\\:\\$backendUserProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaFlexProcessTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:elFromTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaGroupTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:initializeClipboard\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaGroupTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:retrieveFileOrFolderObject\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaGroupTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaGroupTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on bool\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaGroupTest.php
+
+		-
+			message: "#^Variable \\$relationHandlerProphecy in PHPDoc tag @var does not match assigned variable \\$folderProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaGroupTest.php
+
+		-
+			message: "#^Variable \\$relationHandlerProphecy in PHPDoc tag @var does not match assigned variable \\$resourceFactoryProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaGroupTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:check\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaInlineTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\Form\\\\FormDataProvider\\\\TcaInlineTest\\:\\:\\$beUserProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaInlineTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:compile\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaInputPlaceholdersTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaInputPlaceholdersTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaInputPlaceholdersTest.php
+
+		-
+			message: "#^Variable \\$languageService in PHPDoc tag @var does not match assigned variable \\$formDataCompilerProphecy\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaInputPlaceholdersTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAllSites\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaLanguageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:loadSingleTableDescription\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaLanguageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaLanguageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRadioItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRadioItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:shouldNotBeCalled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRadioItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:willReturn\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRadioItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRadioItemsTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRadioItemsTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRecordTitleTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on string\\.$#"
+			count: 5
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaRecordTitleTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:add\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:findByRelation\\(\\)\\.$#"
+			count: 13
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConnectionForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRestrictions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getUid\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getValueArray\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:loadSingleTableDescription\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:processDeletePlaceholder\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quote\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:removeAll\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:start\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:shouldNotBeCalled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessageQueue\\:\\:willReturn\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceStorage\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\<string, mixed\\>\\|false\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on bool\\.$#"
+			count: 9
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on string\\.$#"
+			count: 15
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:add\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:andWhere\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:executeQuery\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:findByRelation\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConnectionForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRestrictions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quote\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:removeAll\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:select\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setDataProvider\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setNodeRenderer\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:where\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Tree\\\\TableConfiguration\\\\TableConfigurationTree\\:\\:setExpandAll\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Tree\\\\TableConfiguration\\\\TableConfigurationTree\\:\\:setLevelMaximum\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Tree\\\\TableConfiguration\\\\TableConfigurationTree\\:\\:setNonSelectableLevelList\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Tree\\\\TableConfiguration\\\\TableConfigurationTree\\:\\:setStartingPoints\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\<string, mixed\\>\\|false\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaSelectTreeItemsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaTextTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isRTE\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaTextTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:transformTextForRichTextEditor\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/TcaTextTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTSConfig\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/FormDataProvider/UserTsConfigTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/InlineStackProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/InlineStackProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/InlineStackProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/NodeExpansion/FieldControlTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIcon\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/NodeExpansion/FieldControlTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/NodeExpansion/FieldControlTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Form/NodeExpansion/FieldControlTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Http/RouteDispatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAttribute\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/backend/Tests/Unit/Http/RouteDispatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:has\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/backend/Tests/Unit/Http/RouteDispatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:validateToken\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/backend/Tests/Unit/Http/RouteDispatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:assignMultiple\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:send\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:to\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Mail\\\\FluidEmail\\:\\:shouldHaveBeenCalled\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$tableArray\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSiteByPageId\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:has\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:parse\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:processDeletePlaceholder\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 10
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:start\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\.$#"
+			count: 6
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Database\\\\RelationHandler\\:\\:start\\(\\) invoked with 1 parameter, 2\\-6 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/backend/Tests/Unit/Utility/BackendUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:parseStructure\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/View/BackendLayout/BackendLayoutTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_call\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/View/BackendLayoutViewTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\Unit\\\\View\\\\BackendLayoutViewTest\\:\\:\\$backendLayoutView with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Backend\\\\View\\\\BackendLayoutView is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/Unit/View/BackendLayoutViewTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\FrontendInterface\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/UnitDeprecated/Form/FormDataProvider/TcaFlexPrepareTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Backend\\\\Tests\\\\UnitDeprecated\\\\Form\\\\FormDataProvider\\\\TcaFlexPrepareTest\\:\\:\\$backendUserProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/backend/Tests/UnitDeprecated/Form/FormDataProvider/TcaFlexPrepareTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Belog\\\\Domain\\\\Model\\\\LogEntry\\:\\:\\$newId \\(string\\) does not accept default value of type int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/belog/Classes/Domain/Model/LogEntry.php
+
+		-
+			message: "#^Method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:render\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/beuser/Classes/Controller/PermissionController.php
+
+		-
+			message: "#^Offset 0 does not exist on non\\-empty\\-array\\<string, mixed\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/beuser/Classes/Domain/Repository/BackendUserGroupRepository.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\QueryInterface\\:\\:logicalAnd\\(\\) invoked with 1 parameter, at least 2 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/beuser/Classes/Domain/Repository/BackendUserRepository.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:loadSingleTableDescription\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/beuser/Tests/Functional/ViewHelpers/MfaStatusViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/beuser/Tests/Functional/ViewHelpers/MfaStatusViewHelperTest.php
+
+		-
+			message: "#^PHPDoc type array\\|string of property TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication\\:\\:\\$uc is not covariant with PHPDoc type array of overridden property TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\AbstractUserAuthentication\\:\\:\\$uc\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Backend\\\\BackendInterface\\:\\:require\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Cache/Frontend/PhpFrontend.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Backend\\\\BackendInterface\\:\\:requireOnce\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Cache/Frontend/PhpFrontend.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Charset\\\\CharsetConverter\\:\\:initToASCII\\(\\) should return int but returns false\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Charset/CharsetConverter.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Charset\\\\CharsetConverter\\:\\:initUnicodeData\\(\\) should return int but returns false\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Charset/CharsetConverter.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Collection/AbstractRecordCollection.php
+
+		-
+			message: "#^Call to method ensureDirectoryExists\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/CliEntryPoint.php
+
+		-
+			message: "#^Call to method findShortestPathCode\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/CliEntryPoint.php
+
+		-
+			message: "#^Call to method getComposer\\(\\) on an unknown class Composer\\\\Script\\\\Event\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/CliEntryPoint.php
+
+		-
+			message: "#^Instantiated class Composer\\\\Util\\\\Filesystem not found\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/CliEntryPoint.php
+
+		-
+			message: "#^Parameter \\$event of method TYPO3\\\\CMS\\\\Core\\\\Composer\\\\CliEntryPoint\\:\\:run\\(\\) has invalid type Composer\\\\Script\\\\Event\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/CliEntryPoint.php
+
+		-
+			message: "#^Call to method getComposer\\(\\) on an unknown class Composer\\\\Script\\\\Event\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/InstallerScripts.php
+
+		-
+			message: "#^Parameter \\$event of method TYPO3\\\\CMS\\\\Core\\\\Composer\\\\InstallerScripts\\:\\:register\\(\\) has invalid type Composer\\\\Script\\\\Event\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/InstallerScripts.php
+
+		-
+			message: "#^Call to method ensureDirectoryExists\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method getComposer\\(\\) on an unknown class Composer\\\\Script\\\\Event\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method getExtra\\(\\) on an unknown class Composer\\\\Package\\\\PackageInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method getIO\\(\\) on an unknown class Composer\\\\Script\\\\Event\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method getName\\(\\) on an unknown class Composer\\\\Package\\\\PackageInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method getReplaces\\(\\) on an unknown class Composer\\\\Package\\\\PackageInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method getType\\(\\) on an unknown class Composer\\\\Package\\\\PackageInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method isSymlinkedDirectory\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method normalizePath\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to method relativeSymlink\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Call to static method isPlatformPackage\\(\\) on an unknown class Composer\\\\Repository\\\\PlatformRepository\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Instantiated class Composer\\\\Util\\\\Filesystem not found\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Offset string on null in empty\\(\\) does not exist\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^PHPDoc tag @var for variable \\$composerPackage contains unknown class Composer\\\\Package\\\\PackageInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Parameter \\$event of method TYPO3\\\\CMS\\\\Core\\\\Composer\\\\PackageArtifactBuilder\\:\\:run\\(\\) has invalid type Composer\\\\Script\\\\Event\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Parameter \\$rootPackage of method TYPO3\\\\CMS\\\\Core\\\\Composer\\\\PackageArtifactBuilder\\:\\:handleRootPackage\\(\\) has invalid type Composer\\\\Package\\\\PackageInterface\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Composer\\\\PackageArtifactBuilder\\:\\:\\$event has unknown class Composer\\\\Script\\\\Event as its type\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$value\\)\\: Unexpected token \"\\$value\", expected type at offset 153$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Configuration/Loader/YamlFileLoader.php
+
+		-
+			message: "#^Variable \\$sectionsToMatch on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Configuration/Parser/PageTsConfigParser.php
+
+		-
+			message: "#^PHPDoc tag @param for parameter \\$referenceArray with type array\\|null is not subtype of native type array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Configuration/Processor/Placeholder/EnvVariableProcessor.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Container\\\\ContainerInterface\\:\\:set\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Classes/Core/BootService.php
+
+		-
+			message: "#^Binary operation \"\\.\" between string and array results in an error\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Core/ClassLoadingInformationGenerator.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\DataHandler\\:\\:copyRecord_raw\\(\\) should return int but returns null\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\DataHandler\\:\\:doesPageHaveUnallowedTables\\(\\) should return array\\|bool but returns string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\DataHandler\\:\\:getSortNumber\\(\\) should return array\\|bool\\|int\\|null but returns float\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\DataHandler\\:\\:pageInfo\\(\\) should return string but returns array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\DataHandler\\:\\:workspaceCannotEditRecord\\(\\) should return string but returns false\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Offset string does not exist on array\\{\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Variable \\$fieldArray in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Variable \\$incomingFieldArray on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Variable \\$uids in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/DataHandler.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Localization\\\\DataMapProcessor\\:\\:fetchDependencies\\(\\) should return array\\<array\\<TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Localization\\\\DataMapItem\\>\\> but returns array\\<int\\|string, array\\<string, array\\<int, TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Localization\\\\DataMapItem\\>\\>\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/Localization/DataMapProcessor.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Localization\\\\DataMapProcessor\\:\\:mapRelationItemId\\(\\) should return array\\<string\\> but returns array\\<int\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/Localization/DataMapProcessor.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Localization\\\\DataMapProcessor\\:\\:resolvePersistedInlineRelations\\(\\) should return array\\<int\\> but returns array\\<string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/Localization/DataMapProcessor.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Model\\\\CorrelationId\\:\\:create\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Model\\\\CorrelationId\\) but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/Model/CorrelationId.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Model\\\\CorrelationId\\:\\:fromString\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Model\\\\CorrelationId\\) but returns TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Model\\\\CorrelationId\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/Model/CorrelationId.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Model\\\\RecordStateFactory\\:\\:forName\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\Model\\\\RecordStateFactory\\) but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DataHandling/Model/RecordStateFactory.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:getUid\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/DataHandling/SoftReference/TypolinkSoftReferenceParser.php
+
+		-
+			message: "#^PHPDoc type TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilder of property TYPO3\\\\CMS\\\\Core\\\\Database\\\\Connection\\:\\:\\$_expr is not covariant with PHPDoc type Doctrine\\\\DBAL\\\\Query\\\\Expression\\\\ExpressionBuilder of overridden property Doctrine\\\\DBAL\\\\Connection\\:\\:\\$_expr\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/Connection.php
+
+		-
+			message: "#^Return type \\(TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilder\\) of method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Connection\\:\\:getExpressionBuilder\\(\\) should be compatible with return type \\(Doctrine\\\\DBAL\\\\Query\\\\Expression\\\\ExpressionBuilder\\) of method Doctrine\\\\DBAL\\\\Connection\\:\\:getExpressionBuilder\\(\\)$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/Connection.php
+
+		-
+			message: "#^Return type \\(TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\QueryBuilder\\) of method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Connection\\:\\:createQueryBuilder\\(\\) should be compatible with return type \\(Doctrine\\\\DBAL\\\\Query\\\\QueryBuilder\\) of method Doctrine\\\\DBAL\\\\Connection\\:\\:createQueryBuilder\\(\\)$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/Connection.php
+
+		-
+			message: "#^Variable \\$alias on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Database/Query/QueryBuilder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Database\\\\ReferenceIndex\\:\\:setReferenceValue_dbRels\\(\\) should return string but returns false\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/ReferenceIndex.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Database\\\\ReferenceIndex\\:\\:setReferenceValue_softreferences\\(\\) should return string but returns false\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/ReferenceIndex.php
+
+		-
+			message: "#^Variable \\$hashList in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/ReferenceIndex.php
+
+		-
+			message: "#^Property Doctrine\\\\DBAL\\\\Schema\\\\SchemaDiff\\:\\:\\$newTables \\(array\\<Doctrine\\\\DBAL\\\\Schema\\\\Table\\>\\) does not accept array\\<Doctrine\\\\DBAL\\\\Schema\\\\TableDiff\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/Schema/ConnectionMigrator.php
+
+		-
+			message: "#^Property Doctrine\\\\DBAL\\\\Schema\\\\SchemaDiff\\:\\:\\$removedTables \\(array\\<Doctrine\\\\DBAL\\\\Schema\\\\Table\\>\\) does not accept array\\<Doctrine\\\\DBAL\\\\Schema\\\\TableDiff\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/Schema/ConnectionMigrator.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\Database\\\\Schema\\\\Parser\\\\AST\\\\CreateColumnDefinitionItem\\:\\:\\$null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Database/Schema/Parser/Parser.php
+
+		-
+			message: "#^Call to an undefined method ReflectionType\\:\\:getName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DependencyInjection/ListenerProviderPass.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Package\\\\PackageInterface\\:\\:getServiceProvider\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/DependencyInjection/ServiceProviderRegistry.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Domain\\\\Repository\\\\PageRepository\\:\\:getRuntimeCache\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\VariableFrontend but returns TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\FrontendInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Domain/Repository/PageRepository.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Http\\\\ImmediateResponseException\\:\\:getResponse\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Http\\\\Response but returns Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Http/ImmediateResponseException.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Http\\\\NormalizedParams\\:\\:createFromServerParams\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\Http\\\\NormalizedParams\\) but returns TYPO3\\\\CMS\\\\Core\\\\Http\\\\NormalizedParams\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Http/NormalizedParams.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Imaging\\\\GraphicalFunctions\\:\\:imageCreateFromFile\\(\\) should return resource but returns GdImage\\|false\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
+
+		-
+			message: "#^Variable \\$result in empty\\(\\) always exists and is always falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/LinkHandling/LinkService.php
+
+		-
+			message: "#^Cannot assign offset 'address' to string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php
+
+		-
+			message: "#^Offset 'address' does not exist on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php
+
+		-
+			message: "#^Offset 'group' does not exist on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php
+
+		-
+			message: "#^Variable \\$comments on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Mail/Rfc822AddressesParser.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\Smtp\\\\Stream\\\\AbstractStream\\:\\:getStreamOptions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Mail/TransportFactory.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\Smtp\\\\Stream\\\\AbstractStream\\:\\:setStreamOptions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Mail/TransportFactory.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessage\\:\\:createFromArray\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\Messaging\\\\FlashMessage\\) but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Messaging/FlashMessage.php
+
+		-
+			message: "#^Call to method ensureDirectoryExists\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Package/Cache/ComposerPackageArtifact.php
+
+		-
+			message: "#^Parameter \\$filesystem of method TYPO3\\\\CMS\\\\Core\\\\Package\\\\Cache\\\\ComposerPackageArtifact\\:\\:__construct\\(\\) has invalid type Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Package/Cache/ComposerPackageArtifact.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Package\\\\Cache\\\\ComposerPackageArtifact\\:\\:\\$filesystem has unknown class Composer\\\\Util\\\\Filesystem as its type\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Package/Cache/ComposerPackageArtifact.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\FrontendInterface\\:\\:require\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Package/Cache/PackageStatesPackageCache.php
+
+		-
+			message: "#^Call to method findShortestPath\\(\\) on an unknown class Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Package/Package.php
+
+		-
+			message: "#^Parameter \\$filesystem of method TYPO3\\\\CMS\\\\Core\\\\Package\\\\Package\\:\\:makePathRelative\\(\\) has invalid type Composer\\\\Util\\\\Filesystem\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Package/Package.php
+
+		-
+			message: "#^Offset string does not exist on null\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Package/PackageManager.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Page\\\\JavaScriptModuleInstruction\\:\\:create\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\Page\\\\JavaScriptModuleInstruction\\) but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Page/JavaScriptModuleInstruction.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Page\\\\JavaScriptModuleInstruction\\:\\:forRequireJS\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\Page\\\\JavaScriptModuleInstruction\\) but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Page/JavaScriptModuleInstruction.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\:\\:copyTo\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/AbstractFile.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\:\\:moveTo\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/AbstractFile.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\:\\:setContents\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns \\$this\\(TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/AbstractFile.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\:\\:setIdentifier\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns \\$this\\(TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/AbstractFile.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\:\\:setStorage\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns \\$this\\(TYPO3\\\\CMS\\\\Core\\\\Resource\\\\AbstractFile\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/AbstractFile.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileCollectionRepository\\:\\:createDomainObject\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Collection\\\\AbstractFileCollection but returns TYPO3\\\\CMS\\\\Core\\\\Collection\\\\CollectionInterface\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/FileCollectionRepository.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileCollectionRepository\\:\\:queryMultipleRecords\\(\\) should return array\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Collection\\\\AbstractFileCollection\\>\\|null but returns array\\<TYPO3\\\\CMS\\\\Core\\\\Collection\\\\AbstractRecordCollection\\>\\|null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/FileCollectionRepository.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/FileReference.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:getProperties\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/FileReference.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:getType\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/FileReference.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileReference\\:\\:getOriginalFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/FileReference.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getReadablePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Folder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder\\:\\:addFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Folder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder\\:\\:addUploadedFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Folder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder\\:\\:createFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Folder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:addFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:addUploadedFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:copyTo\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:createFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:createFolder\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:delete\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:getFileCount\\(\\) should return int but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:getFiles\\(\\) should return array\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\> but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:getSubfolder\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:getSubfolders\\(\\) should return array\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder\\> but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:hasFile\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:hasFolder\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:moveTo\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\InaccessibleFolder\\:\\:rename\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/InaccessibleFolder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Index\\\\ExtractorRegistry\\:\\:getExtractorsWithDriverSupport\\(\\) should return array\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Index\\\\ExtractorInterface\\> but returns array\\<int, array\\<int, TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Index\\\\ExtractorInterface\\>\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Index/ExtractorRegistry.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Index\\\\Indexer\\:\\:getFileType\\(\\) should return string but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Index/Indexer.php
+
+		-
+			message: "#^Variable \\$previewImageFile in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/OnlineMedia/Processing/PreviewProcessing.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceFactory\\:\\:getCollectionObject\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Collection\\\\AbstractFileCollection but returns TYPO3\\\\CMS\\\\Core\\\\Collection\\\\CollectionInterface\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/ResourceFactory.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Resource/ResourceStorage.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:setMissing\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/ResourceStorage.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getRole\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/ResourceStorage.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceStorage\\:\\:getAllFileObjectsInFolder\\(\\) should return array\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\> but returns array\\<string, TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/ResourceStorage.php
+
+		-
+			message: "#^Argument of an invalid type TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Index\\\\ExtractorInterface supplied for foreach, only iterables are supported\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Service/ExtractorService.php
+
+		-
+			message: "#^Variable \\$service on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Resource/Service/ExtractorService.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Routing\\\\Aspect\\\\MappableProcessor\\:\\:fetchMappers\\(\\) should return array\\<TYPO3\\\\CMS\\\\Core\\\\Routing\\\\Aspect\\\\MappableAspectInterface\\> but returns array\\<TYPO3\\\\CMS\\\\Core\\\\Routing\\\\Aspect\\\\AspectInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Routing/Aspect/MappableProcessor.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Routing\\\\PageArguments\\:\\:offsetGet\\(\\) should return array\\<string, array\\|string\\>\\|string\\|null but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Routing/PageArguments.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Routing\\\\RouteResultInterface\\:\\:getLanguage\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Routing/PageRouter.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Routing\\\\RouteResultInterface\\:\\:getTail\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Routing/PageRouter.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Routing\\\\PageRouter\\:\\:matchRequest\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Routing\\\\SiteRouteResult but returns TYPO3\\\\CMS\\\\Core\\\\Routing\\\\PageArguments\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Classes/Routing/PageRouter.php
+
+		-
+			message: "#^Variable \\$pageCandidates on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Routing/PageRouter.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSessionManager\\:\\:create\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSessionManager\\) but returns TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSessionManager\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Session/UserSessionManager.php
+
+		-
+			message: "#^Variable \\$languages on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Site/Entity/NullSite.php
+
+		-
+			message: "#^Unsafe access to private property TYPO3\\\\CMS\\\\Core\\\\SysLog\\\\Type\\:\\:\\$channelMap through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/SysLog/Type.php
+
+		-
+			message: "#^Unsafe access to private property TYPO3\\\\CMS\\\\Core\\\\SysLog\\\\Type\\:\\:\\$levelMap through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/SysLog/Type.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Backend\\\\Tree\\\\TreeNode\\:\\:getSortValue\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Tree/TableConfiguration/DatabaseTreeNode.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Core\\\\Type\\\\Enumeration\\)\\:\\:__default\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Type/Enumeration.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Type\\\\Enumeration\\:\\:cast\\(\\) should return static\\(TYPO3\\\\CMS\\\\Core\\\\Type\\\\Enumeration\\) but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Type/Enumeration.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Type/Enumeration.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\TypoScript\\\\TemplateService\\:\\:getRootlineLevel\\(\\) should return int but returns false\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/TypoScript/TemplateService.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\CommandUtility\\:\\:checkCommand\\(\\) should return bool but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/CommandUtility.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\FrontendInterface\\:\\:require\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/File/ExtendedFileUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\File\\\\ExtendedFileUtility\\:\\:func_newfile\\(\\) should return string but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\|null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/File/ExtendedFileUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\File\\\\ExtendedFileUtility\\:\\:func_newfile\\(\\) should return string but returns false\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/File/ExtendedFileUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\File\\\\ExtendedFileUtility\\:\\:func_rename\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder\\|null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/File/ExtendedFileUtility.php
+
+		-
+			message: "#^Access to an undefined property object\\:\\:\\$info\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Call to an undefined method object\\:\\:getLastErrorArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:getMaxUploadFileSize\\(\\) should return int but returns float\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:intExplode\\(\\) should return array\\<int\\> but returns array\\<int, string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:makeInstance\\(\\) should return object&T but returns TYPO3\\\\CMS\\\\Core\\\\SingletonInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:makeInstance\\(\\) should return object&T but returns object\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:makeInstanceForDi\\(\\) should return object&T but returns TYPO3\\\\CMS\\\\Core\\\\SingletonInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:makeInstanceForDi\\(\\) should return object&T but returns object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Offset 'ch' does not exist on array\\{\\}\\|array\\{attrs\\?\\: mixed, ch\\?\\: array\\<int\\|string, array\\<int, array\\<literal\\-string&non\\-empty\\-string, mixed\\>\\>\\>, tag\\?\\: mixed, values\\?\\: array\\<int, mixed\\>\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Offset 'values' does not exist on array\\{\\}\\|array\\{attrs\\?\\: mixed, ch\\?\\: array\\<int\\|string, array\\<int, array\\<literal\\-string&non\\-empty\\-string, mixed\\>\\>\\>, values\\?\\: array\\<int, mixed\\>\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Template type T of method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:makeInstance\\(\\) is not referenced in a parameter\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Template type T of method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:makeInstanceForDi\\(\\) is not referenced in a parameter\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/GeneralUtility.php
+
+		-
+			message: "#^Binary operation \"&\" between string and string\\|false results in an error\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/IpAnonymizationUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\MailUtility\\:\\:getSystemFrom\\(\\) should return array but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/MailUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\MailUtility\\:\\:getSystemFromName\\(\\) should return string but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Classes/Utility/MailUtility.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\MathUtility\\:\\:calculateWithParentheses\\(\\) should return int but returns string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Classes/Utility/MathUtility.php
+
+		-
+			message: "#^Call to method writeError\\(\\) on an unknown class Composer\\\\IO\\\\IOInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Resources/PHP/ClassMapGenerator.php
+
+		-
+			message: "#^Parameter \\$io of method Composer\\\\Autoload\\\\ClassMapGenerator\\:\\:createMap\\(\\) has invalid type Composer\\\\IO\\\\IOInterface\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Resources/PHP/ClassMapGenerator.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$GLOBALS\\['BE_USER'\\] BackendUserAuthentication\\)\\: Unexpected token \"\\$GLOBALS\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifier\\(\\)\\.$#"
+			count: 15
+			path: ../../typo3/sysext/core/Tests/Functional/Cache/Backend/MemcachedBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Cache/Backend/RedisBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifier\\(\\)\\.$#"
+			count: 24
+			path: ../../typo3/sysext/core/Tests/Functional/Cache/Backend/Typo3DatabaseBackendTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Functional\\\\Core\\\\ClassAliasLoaderTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Cache/Core/ClassAliasLoaderTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Collection\\\\CollectionInterface\\:\\:add\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Functional/Category/Collection/CategoryCollectionTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$collection CategoryCollection\\)\\: Unexpected token \"\\$collection\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Functional/Category/Collection/CategoryCollectionTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Functional\\\\Category\\\\Collection\\\\CategoryCollectionTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Category/Collection/CategoryCollectionTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Functional\\\\DataHandling\\\\DataHandler\\\\SecurityTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/DataHandling/DataHandler/SecurityTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Functional\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilderTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPage_preProcess\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Domain/Repository/PageRepositoryTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$code\\)\\: Unexpected token \"\\$code\", expected type at offset 26$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Error/ErrorHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$message\\)\\: Unexpected token \"\\$message\", expected type at offset 54$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Error/ErrorHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(array TypoScript configuration\\)\\: Unexpected token \"TypoScript\", expected variable at offset 82$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_meta/Classes/Controller/MetaPluginController.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(string Empty string \\(no content to process\\)\\)\\: Unexpected token \"Empty\", expected variable at offset 25$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_meta/Classes/Controller/MetaPluginController.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectation\\)\\: Unexpected token \"\\$expectation\", expected type at offset 45$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Functional/IO/PharStreamWrapperInterceptorTest.php
+
+		-
+			message: "#^PHPDoc tag @param references unknown parameter\\: \\$expectation$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/IO/PharStreamWrapperInterceptorTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Functional\\\\IO\\\\PharStreamWrapperInterceptorTest\\:\\:\\$pathsToProvideInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToProvideInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/IO/PharStreamWrapperInterceptorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:update\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Page/PageRendererTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Functional\\\\Resource\\\\StorageRepositoryTest\\:\\:mapToDataSet\\(\\) should return array\\<string, array\\<string\\>\\> but returns array\\<string, string\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Resource/StorageRepositoryTest.php
+
+		-
+			message: "#^Binary operation \"\\+\\=\" between string and 0\\|4000 results in an error\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Routing/Aspect/PersistedAliasMapperTest.php
+
+		-
+			message: "#^Binary operation \"\\+\\=\" between string and 0\\|4000 results in an error\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Routing/Aspect/PersistedPatternMapperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Functional\\\\Utility\\\\RootlineUtilityTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Functional/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconForRecord\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Functional/ViewHelpers/IconForRecordViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Functional/ViewHelpers/IconForRecordViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIcon\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Functional/ViewHelpers/IconViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Functional/ViewHelpers/IconViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Platforms\\\\AbstractPlatform\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/AbstractUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/AbstractUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilder\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/AbstractUserAuthenticationTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$mock \\\\TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\AbstractUserAuthentication\\)\\: Unexpected token \"\\$mock\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/AbstractUserAuthenticationTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\AbstractUserAuthentication\\:\\:\\$checkPid_value \\(int\\|string\\) does not accept null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/AbstractUserAuthenticationTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$loginType\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/AuthenticationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Platforms\\\\AbstractPlatform\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:remove\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Connection\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilder\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\QueryBuilder\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^Cannot call method will\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$storageUid\\)\\: Unexpected token \"\\$storageUid\", expected type at offset 58$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$lockIPv4PartCount\\)\\: Unexpected token \"\\$lockIPv4PartCount\", expected type at offset 50$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/IpLockerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$lockIPv6PartCount\\)\\: Unexpected token \"\\$lockIPv6PartCount\", expected type at offset 83$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Authentication/IpLockerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/ApcuBackendTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/ApcuBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/FileBackendTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Backend\\\\Fixtures\\\\ConcreteBackendFixture\\:\\:has\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/Fixtures/ConcreteBackendFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Backend\\\\Fixtures\\\\ConcreteBackendFixture\\:\\:remove\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/Fixtures/ConcreteBackendFixture.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:delete\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/Typo3DatabaseBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConnectionForTable\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/Typo3DatabaseBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifier\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/Typo3DatabaseBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:truncate\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Backend/Typo3DatabaseBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:flushByTags\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/CacheManagerTest.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\BackendConfigurationOptionFixture has an unused parameter \\$context\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/BackendConfigurationOptionFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\BackendFixture\\:\\:has\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/BackendFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\BackendFixture\\:\\:remove\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/BackendFixture.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\FrontendBackendInstanceFixture has an unused parameter \\$_\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/FrontendBackendInstanceFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\FrontendFixture\\:\\:getBackend\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Backend\\\\BackendInterface but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/FrontendFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\FrontendFixture\\:\\:has\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/FrontendFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\FrontendFixture\\:\\:isValidEntryIdentifier\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/FrontendFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\FrontendFixture\\:\\:isValidTag\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/FrontendFixture.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Cache\\\\Fixtures\\\\FrontendFixture\\:\\:remove\\(\\) should return bool but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Cache/Fixtures/FrontendFixture.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:flushQueue\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Command/SendEmailCommandTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$subject ConfigurationManager\\|\\\\PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|\\\\TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\)\\: Unexpected token \"\\$subject\", expected type at offset 9$#"
+			count: 5
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/ConfigurationManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:removeLocalConfigurationKeysByPath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/ExtensionConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setLocalConfigurationValueByPath\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/ExtensionConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:add\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:addSelect\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:count\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createNamedParameter\\(\\)\\.$#"
+			count: 11
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:eq\\(\\)\\.$#"
+			count: 11
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:executeQuery\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchAssociative\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchOne\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRestrictions\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:removeAll\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:select\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:where\\(\\)\\.$#"
+			count: 11
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expected\\)\\: Unexpected token \"\\$expected\", expected type at offset 179$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Result of method TYPO3\\\\CMS\\\\Core\\\\Configuration\\\\FlexForm\\\\FlexFormTools\\:\\:traverseFlexFormXMLData_recurse\\(\\) \\(void\\) is used\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/FlexForm/FlexFormToolsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/Loader/PageTsConfigLoaderTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Configuration\\\\Parser\\\\PageTsConfigParserTest\\:\\:\\$setup\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/Parser/PageTsConfigParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:match\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/Parser/PageTsConfigParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:parse\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/Parser/PageTsConfigParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:remove\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/SiteConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:require\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/SiteConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/SiteConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getActivePackages\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackagePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:require\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcherTest.php
+
+		-
+			message: "#^PHPDoc tag @var above assignment does not specify variable name\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Console/CommandRegistryTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$overriddenGroups\\)\\: Unexpected token \"\\$overriddenGroups\", expected type at offset 129$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Context/UserAspectTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$userGroups\\)\\: Unexpected token \"\\$userGroups\", expected type at offset 103$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Context/UserAspectTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$userId\\)\\: Unexpected token \"\\$userId\", expected type at offset 81$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Context/UserAspectTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(array Array which should be returned as composer manifest\\)\\: Unexpected token \"Array\", expected variable at offset 24$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Core/ClassLoadingInformationGeneratorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isAvailable\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/PasswordHashFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isValidSaltedPW\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/PasswordHashFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDataStructureIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:parseDataStructureByIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 12 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 7 parameters, 1 required\\.$#"
+			count: 9
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 8 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Offset 0 does not exist on array\\{\\}\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$dbtype\\)\\: Unexpected token \"\\$dbtype\", expected type at offset 137$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expected\\)\\: Unexpected token \"\\$expected\", expected type at offset 157$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedEvalInt\\)\\: Unexpected token \"\\$expectedEvalInt\", expected type at offset 181$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedOutput\\)\\: Unexpected token \"\\$expectedOutput\", expected type at offset 159$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$inputValue\\)\\: Unexpected token \"\\$inputValue\", expected type at offset 131$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$value\\)\\: Unexpected token \"\\$value\", expected type at offset 116$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/DataHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFileObject\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFileObjectFromCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFolderObjectFromCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getUid\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:retrieveFileOrFolderObject\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFileObject\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFileObjectFromCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFolderObjectFromCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getUid\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:retrieveFileOrFolderObject\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getServerVersion\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/ConnectionTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Platforms\\\\AbstractPlatform\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Platforms\\\\AbstractPlatform\\:\\:willReturn\\(\\)\\.$#"
+			count: 18
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getName\\(\\)\\.$#"
+			count: 17
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getStringLiteralQuoteCharacter\\(\\)\\.$#"
+			count: 12
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldHaveBeenCalled\\(\\) on string\\.$#"
+			count: 14
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Cannot call method will\\(\\) on string\\.$#"
+			count: 20
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Method Doctrine\\\\DBAL\\\\Connection\\:\\:getDatabasePlatform\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilderTest\\:\\:\\$connectionProphet \\(TYPO3\\\\CMS\\\\Core\\\\Database\\\\Connection\\) does not accept Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Variable \\$connectionProphet in PHPDoc tag @var does not exist\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Expression/ExpressionBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Platforms\\\\AbstractPlatform\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Query\\\\QueryBuilder\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 38
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Result\\:\\:willReturn\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:add\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDatabasePlatform\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifierQuoteCharacter\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilder\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilder\\:\\:willReturn\\(\\)\\.$#"
+			count: 11
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on Doctrine\\\\DBAL\\\\Types\\\\Type\\|int\\|string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 5
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\<int\\|string, Doctrine\\\\DBAL\\\\Types\\\\Type\\|int\\|string\\|null\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\<int\\|string, mixed\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on int\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on string\\.$#"
+			count: 36
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldHaveBeenCalled\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method shouldNotBeCalled\\(\\) on string\\.$#"
+			count: 5
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method will\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on array\\.$#"
+			count: 9
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Cannot call method willReturnArgument\\(\\) on string\\.$#"
+			count: 10
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/QueryHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:buildExpression\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isEnforced\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Platforms\\\\AbstractPlatform\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionTestCase.php
+
+		-
+			message: "#^Cannot call method will\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionTestCase.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:buildExpression\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Restriction/LimitToTablesRestrictionContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:removeByType\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Query/Restriction/LimitToTablesRestrictionContainerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Database\\\\RelationHandler\\:\\:expects\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/RelationHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDatabasePlatform\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/ConnectionMigratorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/ConnectionMigratorTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/ConnectionMigratorTest.php
+
+		-
+			message: "#^Call to an undefined method Doctrine\\\\DBAL\\\\Platforms\\\\AbstractPlatform\\:\\:willReturn\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/EventListener/SchemaColumnDefinitionListenerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDoctrineTypeMapping\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/EventListener/SchemaColumnDefinitionListenerTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\Database\\\\Schema\\\\Parser\\\\AST\\\\AbstractCreateStatement\\:\\:\\$isTemporary\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/Parser/CreateTableFragmentTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\Database\\\\Schema\\\\Parser\\\\AST\\\\AbstractCreateStatement\\:\\:\\$tableName\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/Parser/CreateTableFragmentTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\Database\\\\Schema\\\\Parser\\\\AST\\\\AbstractCreateStatement\\:\\:\\$tableOptions\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/Parser/TableOptionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteStringLiteral\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/Types/EnumTypeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteStringLiteral\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Database/Schema/Types/SetTypeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getActivePackages\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCacheIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackage\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackageKey\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackagePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getServiceProvider\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isPackageActive\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isPartOfMinimalUsableSystem\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:requireOnce\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ConsoleCommandPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExtensions\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/FailsafeContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFactories\\(\\)\\.$#"
+			count: 16
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/FailsafeContainerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createService\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:extendService\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExtensions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFactories\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIterator\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php
+
+		-
+			message: "#^Method class@anonymous/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest\\.php\\:225\\:\\:getFactories\\(\\) should return array\\<callable\\(\\)\\: mixed\\> but returns array\\{invalid\\: 2\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\DependencyInjection\\\\ServiceProviderInterface\\:\\:\\$package\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getActivePackages\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackageKey\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getServiceProvider\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isPackageActive\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Package\\\\PackageInterface\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\<TYPO3\\\\CMS\\\\Core\\\\Package\\\\PackageInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on bool\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderRegistryTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\Log\\\\Logger\\:\\:\\$records\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Error/ErrorHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCopyrightYear\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Error/ProductionExceptionHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$exception \\\\Exception\\|\\\\PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\)\\: Unexpected token \"\\$exception\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Error/ProductionExceptionHandlerTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\EventDispatcher\\\\EventDispatcherTest\\:\\:\\$listenerProviderProphecy\\.$#"
+			count: 6
+			path: ../../typo3/sysext/core/Tests/Unit/EventDispatcher/EventDispatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getActivePackages\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExpressionLanguageProviders\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExpressionLanguageVariables\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFunctions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackagePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:require\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Class TYPO3\\\\CMS\\\\Core\\\\ExpressionLanguage\\\\Resolver constructor invoked with 3 parameters, 2 required\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/ExpressionLanguage/ResolverTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$modListGroup\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$modListUser\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLabelsForModule\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getModules\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:load\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:loadSingleTableDescription\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedItems\\)\\: Unexpected token \"\\$expectedItems\", expected type at offset 116$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$tca\\)\\: Unexpected token \"\\$tca\", expected type at offset 97$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Hooks/TcaItemsProcessorFunctionsTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Html\\\\Parser\\\\ParserTest\\:\\:nodesAreResolvedDataProvider\\(\\) should return array\\<string\\> but returns array\\<int, array\\<int, array\\<int, string\\>\\|string\\>\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Html/Parser/ParserTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$content\\)\\: Unexpected token \"\\$content\", expected type at offset 102$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Html/RteHtmlParserTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$content\\)\\: Unexpected token \"\\$content\", expected type at offset 114$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Html/RteHtmlParserTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedResult\\)\\: Unexpected token \"\\$expectedResult\", expected type at offset 125$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Html/RteHtmlParserTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedResult\\)\\: Unexpected token \"\\$expectedResult\", expected type at offset 137$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Html/RteHtmlParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRequest\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Http/ClientTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Http/MiddlewareDispatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:has\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Http/MiddlewareDispatcherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Http/MiddlewareStackResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:has\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Http/MiddlewareStackResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:orderByDependencies\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Http/MiddlewareStackResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Http/MiddlewareStackResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\UriInterface\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Http/Security/ReferrerEnforcerTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Http/Security/ReferrerEnforcerTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Http/Security/ReferrerEnforcerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSize\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Http/UploadedFileFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDefaultIconIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExtension\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconConfigurationByIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconIdentifierForFileExtension\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconIdentifierForMimeType\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getMimeType\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:has\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isDeprecated\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isMissing\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isRegistered\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on bool\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Imaging\\\\IconRegistry\\:\\:getDefaultIconIdentifier\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Imaging\\\\IconFactoryTest\\:\\:\\$iconRegistryMock \\(TYPO3\\\\CMS\\\\Core\\\\Imaging\\\\IconRegistry\\) does not accept Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconProvider/FontawesomeIconProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/IconTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$ratio\\)\\: Unexpected token \"\\$ratio\", expected type at offset 48$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Imaging/ImageManipulation/AreaTest.php
+
+		-
+			message: "#^Variable \\$storageMock in PHPDoc tag @var does not match assigned variable \\$factory\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/LinkHandling/FileLinkHandlerTest.php
+
+		-
+			message: "#^Variable \\$storageMock in PHPDoc tag @var does not match assigned variable \\$storage\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/LinkHandling/FileLinkHandlerTest.php
+
+		-
+			message: "#^Method PHPUnit\\\\Framework\\\\MockObject\\\\MockBuilder\\<TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceStorage\\>\\:\\:getMock\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/LinkHandling/FolderLinkHandlerTest.php
+
+		-
+			message: "#^Variable \\$storageMock in PHPDoc tag @var does not match assigned variable \\$storage\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/LinkHandling/FolderLinkHandlerTest.php
+
+		-
+			message: "#^Variable \\$storageMock in PHPDoc tag @var does not match assigned variable \\$storage\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/LinkHandling/LegacyLinkNotationConverterTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:extractPackageKeyFromPackagePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDataByLanguage\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFileReferenceWithoutExtension\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSupportedExtensions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:hasData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/LocalizationFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAllSites\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/TcaSystemLanguageCollectorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/TcaSystemLanguageCollectorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSiteByPageId\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/TcaSystemLanguageCollectorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getWithUserOverride\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/TcaSystemLanguageCollectorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Localization/TcaSystemLanguageCollectorTest.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Locking\\\\Fixtures\\\\DummyLock has an unused parameter \\$subject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Locking/Fixtures/DummyLock.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Log\\\\Fixtures\\\\WriterFixture\\:\\:writeLog\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Log\\\\Writer\\\\WriterInterface but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Log/Fixtures/WriterFixture.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$processor \\\\TYPO3\\\\CMS\\\\Core\\\\Log\\\\Processor\\\\ProcessorInterface\\|\\\\PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\)\\: Unexpected token \"\\$processor\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Log/LoggerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$processor AbstractMemoryProcessor\\)\\: Unexpected token \"\\$processor\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Log/Processor/AbstractMemoryTest.php
+
+		-
+			message: "#^Argument of an invalid type string supplied for foreach, only iterables are supported\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Log/Processor/WebProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method org\\\\bovigo\\\\vfs\\\\vfsStreamContent\\:\\:hasChild\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Log/Writer/FileWriterTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mime\\\\Header\\\\HeaderInterface\\:\\:getAddress\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/MailMessageTest.php
+
+		-
+			message: "#^PHPDoc tag @param references unknown parameter\\: \\$expectedString$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/MailMessageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/MailerTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\TransportInterface\\:\\:getStream\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/MailerTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$settings\\)\\: Unexpected token \"\\$settings\", expected type at offset 31$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/MailerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLogger\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\TransportInterface\\:\\:getLocalDomain\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\TransportInterface\\:\\:getPassword\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\TransportInterface\\:\\:getPath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\TransportInterface\\:\\:getSettings\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\TransportInterface\\:\\:getStream\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mailer\\\\Transport\\\\TransportInterface\\:\\:getUsername\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Mail/TransportFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getServerParams\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Middleware/VerifyHostHeaderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:handle\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Middleware/VerifyHostHeaderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Package/AbstractServiceProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLogger\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Package/AbstractServiceProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackagePath\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Package/AbstractServiceProviderTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedSortedPackageKeys\\)\\: Unexpected token \"\\$expectedSortedPackageKeys\", expected type at offset 177$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Package/PackageManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\EventDispatcher\\\\EventDispatcherInterface\\:\\:expects\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/AssetRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackageKey\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/ImportMapTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackageMetadata\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/ImportMapTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPackagePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/ImportMapTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getVersion\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/ImportMapTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:resolvePackagePath\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/ImportMapTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/PageRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/PageRendererTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Page\\\\PageRenderer\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:expects\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/PageRendererTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Page/PageRendererTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 4 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Page/PageRendererTest.php
+
+		-
+			message: "#^Cannot call method withCurrentPageNumber\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Pagination/SimplePaginationTest.php
+
+		-
+			message: "#^Cannot call method withItemsPerPage\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Pagination/SimplePaginationTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Pagination\\\\SimplePaginationTest\\:\\:\\$paginator \\(array\\) does not accept TYPO3\\\\CMS\\\\Core\\\\Pagination\\\\ArrayPaginator\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Pagination/SimplePaginationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder\\:\\:method\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Resource\\\\BaseTestCase\\:\\:_createFileFolderMock\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder but returns PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$identifier\\)\\: Unexpected token \"\\$identifier\", expected type at offset 165$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$identifier\\)\\: Unexpected token \"\\$identifier\", expected type at offset 93$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$mockedMethods\\)\\: Unexpected token \"\\$mockedMethods\", expected type at offset 191$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$path\\)\\: Unexpected token \"\\$path\", expected type at offset 74$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$path\\)\\: Unexpected token \"\\$path\", expected type at offset 86$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$type\\)\\: Unexpected token \"\\$type\", expected type at offset 145$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/BaseTestCase.php
+
+		-
+			message: "#^Offset 'my_type' does not exist on array\\{typeB\\: array\\{showitem\\: 'fieldA, fieldB,…'\\}\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Collection/FileCollectionRegistryTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Driver/AbstractHierarchicalFilesystemDriverTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Driver\\\\LocalDriver\\:\\:_call\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Driver/LocalDriverTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Driver\\\\LocalDriver\\:\\:expects\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Driver/LocalDriverTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$subject LocalDriver\\)\\: Unexpected token \"\\$subject\", expected type at offset 9$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Driver/LocalDriverTest.php
+
+		-
+			message: "#^Variable \\$driver in PHPDoc tag @var does not exist\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Driver/LocalDriverTest.php
+
+		-
+			message: "#^PHPDoc tag @param references unknown parameter\\: \\$expectedMergedProperties$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/FileReferenceTest.php
+
+		-
+			message: "#^Variable \\$driverMock in PHPDoc tag @var does not exist\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Filter/FileNameFilterTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/MetaDataAspectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConnectionForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/MetaDataAspectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:insert\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/MetaDataAspectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:lastInsertId\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/MetaDataAspectTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$get\\)\\: Unexpected token \"\\$get\", expected type at offset 61$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/MetaDataAspectTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$has\\)\\: Unexpected token \"\\$has\", expected type at offset 42$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/MetaDataAspectTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$metaData\\)\\: Unexpected token \"\\$metaData\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/MetaDataAspectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getName\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Processing/ProcessorRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getType\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Processing/ProcessorRegistryTest.php
+
+		-
+			message: "#^PHPDoc tag @var for variable \\$fileResourceMock contains unknown class PHPUnit_Framework_MockObject_MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Rendering/VimeoRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createNamedParameter\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:executeQuery\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchAssociative\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:select\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:where\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceCompressorTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceCompressorTest.php
+
+		-
+			message: "#^PHPDoc tag @param for parameter \\$input with type string is incompatible with native type array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceCompressorTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$subject \\\\PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|\\\\TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\|ResourceFactory\\)\\: Unexpected token \"\\$subject\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createFolderObject\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFileObjectFromCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:updateProperties\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @param for parameter \\$driverObject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Driver\\\\AbstractDriver is not subtype of native type TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Driver\\\\AbstractDriver\\|null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$driverConfiguration\\)\\: Unexpected token \"\\$driverConfiguration\", expected type at offset 212$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$driver LocalDriver\\|MockObject\\)\\: Unexpected token \"\\$driver\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$mockedDriver LocalDriver\\|MockObject\\)\\: Unexpected token \"\\$mockedDriver\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$mockedDriver \\\\TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Driver\\\\AbstractDriver\\|MockObject\\)\\: Unexpected token \"\\$mockedDriver\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$mockedFolder Folder\\|MockObject\\)\\: Unexpected token \"\\$mockedFolder\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$subject ResourceStorage\\|MockObject\\)\\: Unexpected token \"\\$subject\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$subject ResourceStorage\\|MockObject\\|\\\\TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\)\\: Unexpected token \"\\$subject\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:deleteAction\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Utility/FileExtensionFilterTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFileReferenceObject\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Utility/FileExtensionFilterTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Filter\\\\FileExtensionFilter\\:\\:_call\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Resource/Utility/FileExtensionFilterTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCandidatesForPath\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Routing/PageRouterTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Site\\\\SiteFinder\\:\\:method\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Routing/SiteMatcherTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Service/DependencyOrderingServiceTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 4 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Service/DependencyOrderingServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedDependencies\\)\\: Unexpected token \"\\$expectedDependencies\", expected type at offset 142$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Service/DependencyOrderingServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Frontend\\\\FrontendInterface\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Service/MarkerBasedTemplateServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:initialize\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Session/SessionManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:validateConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Session/SessionManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Session/UserSessionManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCookieParams\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Session/UserSessionManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Session/UserSessionManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:update\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Session/UserSessionManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createNamedParameter\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:eq\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:executeQuery\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchAssociative\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRestrictions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:removeAll\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:select\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setMaxResults\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:where\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/DatabaseTreeDataProviderTest.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\Unit\\\\Tree\\\\TableConfiguration\\\\Fixtures\\\\TreeDataProviderFixture has an unused parameter \\$configuration\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Tree/TableConfiguration/Fixtures/TreeDataProviderFixture.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedValue\\)\\: Unexpected token \"\\$expectedValue\", expected type at offset 100$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Type/EnumerationTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$testValue\\)\\: Unexpected token \"\\$testValue\", expected type at offset 75$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Type/EnumerationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:error\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Type/File/ImageInfoTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:imageMagickIdentify\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Type/File/ImageInfoTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:warning\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Type/File/ImageInfoTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/Parser/TypoScriptParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/Parser/TypoScriptParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:match\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/Parser/TypoScriptParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/Parser/TypoScriptParserTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/Parser/TypoScriptParserTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 4 parameters, 1 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/Parser/TypoScriptParserTest.php
+
+		-
+			message: "#^PHPDoc tag @param references unknown parameter\\: \\$modifierName$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/Parser/TypoScriptParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSite\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php
+
+		-
+			message: "#^Cannot call method shouldNotBeCalled\\(\\) on array\\<TYPO3\\\\CMS\\\\Core\\\\Package\\\\PackageInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\<TYPO3\\\\CMS\\\\Core\\\\Package\\\\PackageInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$existing\\)\\: Unexpected token \"\\$existing\", expected type at offset 111$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expected\\)\\: Unexpected token \"\\$expected\", expected type at offset 135$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expected\\)\\: Unexpected token \"\\$expected\", expected type at offset 159$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedResult\\)\\: Unexpected token \"\\$expectedResult\", expected type at offset 141$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedResultArray\\)\\: Unexpected token \"\\$expectedResultArray\", expected type at offset 144$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$insertionList\\)\\: Unexpected token \"\\$insertionList\", expected type at offset 110$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$key\\)\\: Unexpected token \"\\$key\", expected type at offset 90$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$list\\)\\: Unexpected token \"\\$list\", expected type at offset 139$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$position\\)\\: Unexpected token \"\\$position\", expected type at offset 87$#"
+			count: 2
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$relativePosition\\)\\: Unexpected token \"\\$relativePosition\", expected type at offset 112$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$relativeToField\\)\\: Unexpected token \"\\$relativeToField\", expected type at offset 81$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$string\\)\\: Unexpected token \"\\$string\", expected type at offset 119$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/ExtensionManagementUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:count\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createNamedParameter\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:eq\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:executeQuery\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchOne\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRestrictions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:in\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:neq\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:where\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/File/ExtendedFileUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expected\\)\\: Unexpected token \"\\$expected\", expected type at offset 130$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
+
+		-
+			message: "#^Static method TYPO3\\\\CMS\\\\Core\\\\Utility\\\\GeneralUtility\\:\\:callUserFunction\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$baseFileName\\)\\: Unexpected token \"\\$baseFileName\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/PathUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedFileName\\)\\: Unexpected token \"\\$expectedFileName\", expected type at offset 77$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/PathUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$includeFileName\\)\\: Unexpected token \"\\$includeFileName\", expected type at offset 46$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/PathUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 7
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 7
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/RootlineUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$haystack\\)\\: Unexpected token \"\\$haystack\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/StringUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$needle\\)\\: Unexpected token \"\\$needle\", expected type at offset 42$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/StringUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$result\\)\\: Unexpected token \"\\$result\", expected type at offset 64$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/Unit/Utility/StringUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Tests\\\\UnitDeprecated\\\\Compatibility\\\\Fixtures\\\\PublicMethodDeprecationTraitTextFixture\\:\\:doesNotExist\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/UnitDeprecated/Compatibility/PublicMethodDeprecationTraitTest.php
+
+		-
+			message: "#^Call to protected method methodMadeProtected\\(\\) of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\UnitDeprecated\\\\Compatibility\\\\Fixtures\\\\PublicMethodDeprecationTraitTextFixture\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/UnitDeprecated/Compatibility/PublicMethodDeprecationTraitTest.php
+
+		-
+			message: "#^Call to protected method methodMadeProtectedWithArguments\\(\\) of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\UnitDeprecated\\\\Compatibility\\\\Fixtures\\\\PublicMethodDeprecationTraitTextFixture\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/UnitDeprecated/Compatibility/PublicMethodDeprecationTraitTest.php
+
+		-
+			message: "#^Call to protected method methodMadeProtectedWithReturn\\(\\) of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\UnitDeprecated\\\\Compatibility\\\\Fixtures\\\\PublicMethodDeprecationTraitTextFixture\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/UnitDeprecated/Compatibility/PublicMethodDeprecationTraitTest.php
+
+		-
+			message: "#^Call to protected method standardProtectedMethod\\(\\) of class TYPO3\\\\CMS\\\\Core\\\\Tests\\\\UnitDeprecated\\\\Compatibility\\\\Fixtures\\\\PublicMethodDeprecationTraitTextFixture\\.$#"
+			count: 1
+			path: ../../typo3/sysext/core/Tests/UnitDeprecated/Compatibility/PublicMethodDeprecationTraitTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setArgument\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setPublic\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\DependencyInjection\\\\ContainerBuilder\\:\\:reveal\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\DependencyInjection\\\\Definition\\:\\:reveal\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\DependencyInjection\\\\Definition\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\DependencyInjection\\\\Definition\\:\\:shouldNotBeCalled\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\DependencyInjection\\\\Definition\\:\\:willReturn\\(\\)\\.$#"
+			count: 10
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Cannot call method shouldNotBeCalled\\(\\) on array\\<string, array\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\<string, array\\>\\.$#"
+			count: 5
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Class TYPO3\\\\CMS\\\\Dashboard\\\\Tests\\\\Unit\\\\DependencyInjection\\\\Reference not found\\.$#"
+			count: 3
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Class TYPO3\\\\CMS\\\\Dashboard\\\\Tests\\\\Unit\\\\DependencyInjection\\\\WidgetConfiguration not found\\.$#"
+			count: 3
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Method Symfony\\\\Component\\\\DependencyInjection\\\\Definition\\:\\:addMethodCall\\(\\) invoked with 0 parameters, 1\\-3 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Method Symfony\\\\Component\\\\DependencyInjection\\\\Definition\\:\\:getClass\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Dashboard\\\\Tests\\\\Unit\\\\DependencyInjection\\\\DashboardWidgetPassTest\\:\\:\\$container \\(Symfony\\\\Component\\\\DependencyInjection\\\\ContainerBuilder\\) does not accept Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Dashboard\\\\Tests\\\\Unit\\\\DependencyInjection\\\\DashboardWidgetPassTest\\:\\:\\$widgetRegistryDefinition \\(Symfony\\\\Component\\\\DependencyInjection\\\\Definition\\) does not accept Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/DependencyInjection/DashboardWidgetPassTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAdditionalCssClasses\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDescription\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getGroupNames\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getHeight\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTitle\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getWidth\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on bool\\.$#"
+			count: 1
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on bool\\.$#"
+			count: 2
+			path: ../../typo3/sysext/dashboard/Tests/Unit/WidgetRegistryTest.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Configuration/AbstractConfigurationManager.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerActionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Core/Bootstrap.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Domain\\\\Model\\\\File\\:\\:getOriginalResource\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Domain/Model/File.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceInterface\\:\\:getOriginalFile\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Domain/Model/FileReference.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Domain\\\\Model\\\\FileReference\\:\\:getOriginalResource\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileReference but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Domain/Model/FileReference.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\Request\\:\\:withoutAttribute\\(\\) should return static\\(TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\Request\\) but returns Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Mvc/Request.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 14
+			path: ../../typo3/sysext/extbase/Classes/Mvc/Request.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\DomainObject\\\\DomainObjectInterface\\:\\:_isDirty\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\DomainObject\\\\DomainObjectInterface\\:\\:_memorizeCleanState\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectMonitoringInterface\\:\\:_isDirty\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\DomainObject\\\\DomainObjectInterface\\:\\:_memorizeCleanState\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/LazyObjectStorage.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\DomainObject\\\\DomainObjectInterface\\:\\:_hasProperty\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\DomainObject\\\\DomainObjectInterface\\:\\:_memorizeCleanState\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Qom\\\\JoinConditionInterface\\:\\:getProperty1Name\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Mapper\\\\DataMapper\\:\\:mapDateTime\\(\\) should return DateTimeInterface but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Qom\\\\Comparison\\:\\:getOperator\\(\\) should return string but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Comparison.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Session\\:\\:getIdentifierByObject\\(\\) should return string but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Session.php
+
+		-
+			message: "#^Argument of an invalid type TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Qom\\\\StaticOperandInterface supplied for foreach, only iterables are supported\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbQueryParser.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\PropertyMappingConfigurationInterface\\:\\:shouldMap\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Property/PropertyMapper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\PropertyMappingConfigurationInterface\\:\\:traverseProperties\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Property/PropertyMappingConfiguration.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\TypeConverter\\\\FloatConverter\\:\\:convertFrom\\(\\) should return float\\|TYPO3\\\\CMS\\\\Extbase\\\\Error\\\\Error but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Property/TypeConverter/FloatConverter.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\TypeConverter\\\\IntegerConverter\\:\\:convertFrom\\(\\) should return int\\|TYPO3\\\\CMS\\\\Extbase\\\\Error\\\\Error but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Property/TypeConverter/IntegerConverter.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\TypeConverter\\\\ObjectConverter\\:\\:\\$sourceTypes is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\TypeConverter\\\\AbstractTypeConverter\\:\\:\\$sourceTypes\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Property/TypeConverter/ObjectConverter.php
+
+		-
+			message: "#^Unsafe access to private property TYPO3\\\\CMS\\\\Extbase\\\\Reflection\\\\ClassSchema\\:\\:\\$methodObjects through static\\:\\:\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Classes/Reflection/ClassSchema.php
+
+		-
+			message: "#^Unsafe access to private property TYPO3\\\\CMS\\\\Extbase\\\\Reflection\\\\ClassSchema\\:\\:\\$propertyObjects through static\\:\\:\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Classes/Reflection/ClassSchema.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Reflection\\\\ObjectAccess\\:\\:createAccessor\\(\\) should return Symfony\\\\Component\\\\PropertyAccess\\\\PropertyAccessor but returns Symfony\\\\Component\\\\PropertyAccess\\\\PropertyAccessorInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php
+
+		-
+			message: "#^Unsafe access to private property TYPO3\\\\CMS\\\\Extbase\\\\Reflection\\\\ObjectAccess\\:\\:\\$propertyAccessor through static\\:\\:\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php
+
+		-
+			message: "#^Unsafe call to private method TYPO3\\\\CMS\\\\Extbase\\\\Reflection\\\\ObjectAccess\\:\\:wrap\\(\\) through static\\:\\:\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php
+
+		-
+			message: "#^Variable \\$object in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Utility/DebuggerUtility.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\Validator\\\\ObjectValidatorInterface\\:\\:\\$setValidatedInstancesContainer\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Validation/Validator/AbstractCompositeValidator.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\ValidatorResolver\\:\\:createValidator\\(\\) should return TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\Validator\\\\ValidatorInterface but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Classes/Validation/ValidatorResolver.php
+
+		-
+			message: "#^PHPDoc tag @param references unknown parameter\\: \\$response$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/BlogController.php
+
+		-
+			message: "#^Return type \\(bool\\) of method ExtbaseTeam\\\\BlogExample\\\\Controller\\\\BlogController\\:\\:getErrorFlashMessage\\(\\) should be compatible with return type \\(string\\) of method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\Controller\\\\ActionController\\:\\:getErrorFlashMessage\\(\\)$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/BlogController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/ContentController.php
+
+		-
+			message: "#^PHPDoc tag @param references unknown parameter\\: \\$response$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/ContentController.php
+
+		-
+			message: "#^PHPDoc tag @return with type array is incompatible with native type Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/ContentController.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$name\\)\\: Unexpected token \"\\$name\", expected type at offset 52$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Domain/Model/Tag.php
+
+		-
+			message: "#^PHPDoc type int\\|null of property ExtbaseTeam\\\\BlogExample\\\\Domain\\\\Model\\\\TtContent\\:\\:\\$pid is not covariant with PHPDoc type int of overridden property TYPO3\\\\CMS\\\\Extbase\\\\DomainObject\\\\AbstractDomainObject\\:\\:\\$pid\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Domain/Model/TtContent.php
+
+		-
+			message: "#^PHPDoc type int\\|null of property ExtbaseTeam\\\\BlogExample\\\\Domain\\\\Model\\\\TtContent\\:\\:\\$uid is not covariant with PHPDoc type int of overridden property TYPO3\\\\CMS\\\\Extbase\\\\DomainObject\\\\AbstractDomainObject\\:\\:\\$uid\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Domain/Model/TtContent.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Mvc\\\\Controller\\\\ActionControllerArgumentTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerArgumentTest.php
+
+		-
+			message: "#^Variable \\$expectations on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerArgumentTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\Validator\\\\ValidatorInterface\\:\\:getValidators\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Mvc\\\\Controller\\\\ActionControllerTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Variable \\$validator in PHPDoc tag @var does not match assigned variable \\$conjunctionValidator\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Mvc\\\\Controller\\\\ControllerArgumentsMappingTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ControllerArgumentsMappingTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Mvc\\\\Validation\\\\ActionControllerValidationTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Mvc/Validation/ActionControllerValidationTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Pagination\\\\QueryResultPaginatorTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Pagination/QueryResultPaginatorTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\AddTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/AddTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\CountTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/CountTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\EnableFieldsTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/EnableFieldsTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\Generic\\\\Mapper\\\\DataMapFactoryTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/Generic/Mapper/DataMapFactoryTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\Generic\\\\Mapper\\\\DataMapperTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/Generic/Mapper/DataMapperTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\InTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/InTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\IsDirtyTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/IsDirtyTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\QueryInterface\\:\\:between\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/OperatorTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\OperatorTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/OperatorTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\QueryLocalizedDataTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/QueryLocalizedDataTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\QueryParserTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/QueryParserTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$queryRequest\\)\\: Unexpected token \"\\$queryRequest\", expected type at offset 126$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/RelationTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$queryRequest\\)\\: Unexpected token \"\\$queryRequest\", expected type at offset 81$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/RelationTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$queryRequest\\)\\: Unexpected token \"\\$queryRequest\", expected type at offset 82$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/RelationTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$queryRequest\\)\\: Unexpected token \"\\$queryRequest\", expected type at offset 97$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/RelationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslatedSiteContentTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslatedSiteContentTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslatedSiteContentTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslatedSiteContentTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslatedSiteContentTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\TranslatedSiteContentTest\\:\\:\\$pathsToLinkInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToLinkInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslatedSiteContentTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\TranslatedSiteContentTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslatedSiteContentTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\TranslationTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/TranslationTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\WorkspaceTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/WorkspaceTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Persistence\\\\WorkspaceTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Persistence/WorkspaceTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Container\\\\ContainerInterface\\:\\:set\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/extbase/Tests/Functional/Property/PropertyMapperTest.php
+
+		-
+			message: "#^Constructor of an anonymous class has an unused parameter \\$name\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Property/TypeConverter/ObjectConverterTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Service\\\\ExtensionServiceTest\\:\\:\\$backendConfigurationManager\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Functional/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Functional\\\\Service\\\\ExtensionServiceTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Functional/Validation/ValidatorResolverTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/BackendConfigurationManagerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/BackendConfigurationManagerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 8
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/FrontendConfigurationManagerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/FrontendConfigurationManagerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 4 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/FrontendConfigurationManagerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$abstractConfigurationManager FrontendConfigurationManager\\)\\: Unexpected token \"\\$abstractConfigurationManager\", expected type at offset 9$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/FrontendConfigurationManagerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$cObjectMock ContentObjectRenderer\\)\\: Unexpected token \"\\$cObjectMock\", expected type at offset 9$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/FrontendConfigurationManagerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$flexFormService FlexFormService\\|MockObject\\)\\: Unexpected token \"\\$flexFormService\", expected type at offset 9$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/FrontendConfigurationManagerTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$frontendConfigurationManager FrontendConfigurationManager\\)\\: Unexpected token \"\\$frontendConfigurationManager\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Configuration/FrontendConfigurationManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:addFooterData\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:addHeaderData\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getMessageQueueByIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPluginNamespace\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_set\\(\\) invoked with 3 parameters, 2 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\Controller\\\\Arguments\\:\\:nonExistingMethod\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ArgumentsTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectExceptionCode\\)\\: Unexpected token \"\\$expectExceptionCode\", expected type at offset 39$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/MvcPropertyMappingConfigurationServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$input\\)\\: Unexpected token \"\\$input\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Controller/MvcPropertyMappingConfigurationServiceTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Web/Routing/UriBuilderTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 4 parameters, 1 required\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Mvc/Web/Routing/UriBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Backend\\:\\:_set\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/BackendTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$dataMapFactory \\\\TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Mapper\\\\DataMapFactory \\| AccessibleObjectInterface\\)\\: Unexpected token \"\\$dataMapFactory\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapFactoryTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$dataMapFactory \\\\TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Mapper\\\\DataMapFactory\\)\\: Unexpected token \"\\$dataMapFactory\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getUid\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 3 parameters, 1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 4 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$dateTime NULL\\|\\\\DateTime\\)\\: Unexpected token \"\\$dateTime\", expected type at offset 9$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Mapper/DataMapperTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\PersistenceManagerInterface\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:\\$Persistence_Object_Identifier\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/PersistenceManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:commit\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/PersistenceManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setAggregateRootObjects\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/PersistenceManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setChangedEntities\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/PersistenceManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setDeletedEntities\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/PersistenceManagerTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Container\\\\ContainerInterface\\:\\:expects\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/QueryFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Container\\\\ContainerInterface\\:\\:method\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/QueryFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\PersistenceManagerInterface\\:\\:expects\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/QueryResultTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Container\\\\ContainerInterface\\:\\:expects\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/QueryTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\PersistenceManagerInterface\\:\\:expects\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/QueryTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$qomFactory \\\\TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Qom\\\\QueryObjectModelFactory\\)\\: Unexpected token \"\\$qomFactory\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/QueryTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Persistence\\\\Generic\\\\Storage\\\\Typo3DbBackendTest\\:\\:\\$container\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createNamedParameter\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:eq\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:executeQuery\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchOne\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:select\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setRestrictions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:where\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbBackendTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:__toString\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:addOrderBy\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:andWhere\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:andX\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createNamedParameter\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createQueryBuilder\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConnection\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConnectionForTable\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConstraint\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConstraint1\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConstraint2\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExpressionBuilder\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getOrderings\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSource\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getStatement\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:orX\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Persistence\\\\Generic\\\\Storage\\\\Typo3DbQueryParserTest\\:\\:prophesize\\(\\) invoked with 2 parameters, 0\\-1 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Static method Prophecy\\\\Argument\\:\\:any\\(\\) invoked with 2 parameters, 0 required\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/Generic/Storage/Typo3DbQueryParserTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Repository\\:\\:countByFoo\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/RepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Repository\\:\\:findByFoo\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/RepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Repository\\:\\:findOneByFoo\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/RepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Repository\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:findOneByFoo\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/RepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\Session\\:\\:method\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/RepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\QueryInterface\\:\\:expects\\(\\)\\.$#"
+			count: 10
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/RepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\QueryInterface\\:\\:method\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Persistence/RepositoryTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Property\\\\PropertyMappingConfigurationTest\\:\\:buildChildConfigurationForSingleProperty\\(\\) should return array but returns TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\PropertyMappingConfiguration\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Property/PropertyMappingConfigurationTest.php
+
+		-
+			message: "#^PHPDoc tag @return with type TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\PropertyMappingConfiguration is incompatible with native type array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Property/PropertyMappingConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method DateTime\\|TYPO3\\\\CMS\\\\Extbase\\\\Error\\\\Error\\:\\:foo\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Property/TypeConverter/DateTimeConverterTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$source\\)\\: Unexpected token \"\\$source\", expected type at offset 31$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Property/TypeConverter/DateTimeConverterTest.php
+
+		-
+			message: "#^Constructor of an anonymous class has an unused parameter \\$copy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php
+
+		-
+			message: "#^PHPDoc tag @param for parameter \\$foo with type TYPO3\\\\CMS\\\\Extbase\\\\Reflection\\\\ClassSchema is incompatible with native type string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Reflection\\\\Fixture\\\\DummyClassWithConstructorAndConstructorArguments has an unused parameter \\$bar\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyClassWithConstructorAndConstructorArguments.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Reflection\\\\Fixture\\\\DummyClassWithConstructorAndConstructorArguments has an unused parameter \\$foo\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyClassWithConstructorAndConstructorArguments.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Reflection\\\\Fixture\\\\DummyClassWithConstructorAndConstructorArgumentsWithDependencies has an unused parameter \\$foo\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyClassWithConstructorAndConstructorArgumentsWithDependencies.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Reflection\\\\Fixture\\\\DummyClassWithInvalidTypeHint has an unused parameter \\$invalid\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyClassWithInvalidTypeHint.php
+
+		-
+			message: "#^Parameter \\$invalid of method TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Reflection\\\\Fixture\\\\DummyClassWithInvalidTypeHint\\:\\:__construct\\(\\) has invalid type Foo\\\\Bar\\\\Not\\\\Found\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyClassWithInvalidTypeHint.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$fooParam\\)\\: Unexpected token \"\\$fooParam\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyController.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$bar\\)\\: Unexpected token \"\\$bar\", expected type at offset 37$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyControllerWithIgnoreValidationDoctrineAnnotation.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$foo\\)\\: Unexpected token \"\\$foo\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/Fixture/DummyControllerWithIgnoreValidationDoctrineAnnotation.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Reflection\\\\Fixture\\\\DummyClassWithGettersAndSetters\\:\\:\\$shouldNotBePickedUp\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Reflection/ObjectAccessTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Service/CacheServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDatabasePlatform\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExpressionBuilder\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Configuration\\\\ConfigurationManagerInterface\\:\\:expects\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/extbase/Tests/Unit/Service/ExtensionServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$objectStorage \\\\TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\)\\: Unexpected token \"\\$objectStorage\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/DebuggerUtilityTest.php
+
+		-
+			message: "#^Offset 'defaultContentRende…' does not exist on array\\{\\}\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/ExtensionUtilityTest.php
+
+		-
+			message: "#^Offset 0 does not exist on array\\{\\}\\.$#"
+			count: 6
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/ExtensionUtilityTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$user\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getParsedData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Utility\\\\LocalizationUtilityTest\\:\\:\\$configurationManagerInterfaceProphecy \\(TYPO3\\\\CMS\\\\Extbase\\\\Configuration\\\\ConfigurationManagerInterface\\) does not accept Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:validate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/CollectionValidatorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\ValidatorResolver\\:\\:expects\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/CollectionValidatorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\ValidatorResolver\\:\\:method\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/CollectionValidatorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\Validator\\\\ValidatorInterface\\:\\:_set\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/CollectionValidatorTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Validation\\\\Validator\\\\CollectionValidatorTest\\:\\:\\$validator \\(TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\Validator\\\\ValidatorInterface\\) does not accept PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/CollectionValidatorTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Validation\\\\Validator\\\\FloatValidatorTest\\:\\:\\$validator\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/FloatValidatorTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Validation\\\\Validator\\\\IntegerValidatorTest\\:\\:\\$validator\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/IntegerValidatorTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Validation\\\\Validator\\\\NotEmptyValidatorTest\\:\\:\\$validator\\.$#"
+			count: 10
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/NotEmptyValidatorTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:validate\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/NumberRangeValidatorTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Validation\\\\Validator\\\\NumberValidatorTest\\:\\:\\$validator \\(TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\Validator\\\\ValidatorInterface\\) does not accept PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/NumberValidatorTest.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Validation\\\\Validator\\\\TextValidatorTest\\:\\:\\$validator\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/TextValidatorTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Extbase\\\\Tests\\\\Unit\\\\Validation\\\\Validator\\\\UrlValidatorTest\\:\\:\\$validator \\(TYPO3\\\\CMS\\\\Extbase\\\\Validation\\\\Validator\\\\UrlValidator\\) does not accept PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extbase/Tests/Unit/Validation/Validator/UrlValidatorTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:getArgument\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/Controller/AbstractModuleController.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:getControllerActionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/Controller/AbstractModuleController.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:getControllerName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/Controller/AbstractModuleController.php
+
+		-
+			message: "#^Offset 'message' does not exist on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/Controller/DownloadController.php
+
+		-
+			message: "#^Cannot call method getVersion\\(\\) on string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/Domain/Model/DownloadQueue.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Extensionmanager\\\\Domain\\\\Model\\\\Extension\\:\\:convertDependenciesToObjects\\(\\) should return iterable\\<TYPO3\\\\CMS\\\\Extensionmanager\\\\Domain\\\\Model\\\\Dependency\\>&SplObjectStorage but returns SplObjectStorage\\<object, mixed\\>\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extensionmanager/Classes/Domain/Model/Extension.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extensionmanager\\\\Remote\\\\ExtensionDownloaderRemoteInterface\\:\\:needsUpdate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/Report/ExtensionStatus.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extensionmanager\\\\Domain\\\\Repository\\\\ExtensionRepository\\:\\:countByExtensionKey\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/Utility/DependencyUtility.php
+
+		-
+			message: "#^Offset string does not exist on null\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extensionmanager/Classes/Utility/EmConfUtility.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/ViewHelpers/DownloadExtensionViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/ViewHelpers/ReloadSqlDataViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/ViewHelpers/RemoveExtensionViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Classes/ViewHelpers/ToggleExtensionInstallationStateViewHelper.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:enrichExtensionWithDetails\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Controller/ActionControllerTest.php
+
+		-
+			message: "#^Variable \\$downloadUtilityMock in PHPDoc tag @var does not match assigned variable \\$extensionManagementServiceMock\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Controller/DownloadControllerTest.php
+
+		-
+			message: "#^Method PHPUnit\\\\Framework\\\\TestCase\\:\\:count\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Domain/Repository/ExtensionRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createFromUserPreferences\\(\\)\\.$#"
+			count: 9
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getDefaultRemote\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLL\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLLL\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:hasDefaultRemote\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:hasRemote\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:includeLLFile\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^PHPDoc tag @throws with type TYPO3\\\\CMS\\\\Extbase\\\\Object\\\\Exception is not subtype of Throwable$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$mockListUtility ListUtility\\|\\\\PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\)\\: Unexpected token \"\\$mockListUtility\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Report/ExtensionStatusTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRemote\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Service/ExtensionManagementServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:hasRemote\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Service/ExtensionManagementServiceTest.php
+
+		-
+			message: "#^Undefined variable\\: \\$EM_CONF$#"
+			count: 2
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/EmConfUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createFromUserPreferences\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/FileHandlingUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/FileHandlingUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLLL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/FileHandlingUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:includeLLFile\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/FileHandlingUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extensionmanager\\\\Utility\\\\FileHandlingUtility\\:\\:_call\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/FileHandlingUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/InstallUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/InstallUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getContainer\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/InstallUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:makeCurrent\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/InstallUtilityTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/InstallUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$availableExtensions\\)\\: Unexpected token \"\\$availableExtensions\", expected type at offset 99$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/ListUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$emConf\\)\\: Unexpected token \"\\$emConf\", expected type at offset 128$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/ListUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedResult\\)\\: Unexpected token \"\\$expectedResult\", expected type at offset 134$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/ListUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedResult\\)\\: Unexpected token \"\\$expectedResult\", expected type at offset 150$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/ListUtilityTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$extensions\\)\\: Unexpected token \"\\$extensions\", expected type at offset 102$#"
+			count: 1
+			path: ../../typo3/sysext/extensionmanager/Tests/Unit/Utility/ListUtilityTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\FrontendLogin\\\\Configuration\\\\RedirectConfiguration\\:\\:fromSettings\\(\\) should return static\\(TYPO3\\\\CMS\\\\FrontendLogin\\\\Configuration\\\\RedirectConfiguration\\) but returns TYPO3\\\\CMS\\\\FrontendLogin\\\\Configuration\\\\RedirectConfiguration\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Classes/Configuration/RedirectConfiguration.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\FrontendLogin\\\\Tests\\\\Functional\\\\Domain\\\\Repository\\\\FrontendUserGroupRepositoryTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Functional/Domain/Repository/FrontendUserGroupRepositoryTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\FrontendLogin\\\\Tests\\\\Functional\\\\Domain\\\\Repository\\\\FrontendUserRepositoryTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Functional/Domain/Repository/FrontendUserRepositoryTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\FrontendLogin\\\\Tests\\\\Functional\\\\Tca\\\\ContentVisibleFieldsTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Functional/Tca/ContentVisibleFieldsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:generateHmac\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Configuration/RecoveryConfigurationTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Configuration/RecoveryConfigurationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\FrontendLogin\\\\Redirect\\\\RedirectModeHandler\\:\\:reveal\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Redirect/RedirectHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\FrontendLogin\\\\Redirect\\\\ServerRequestHandler\\:\\:reveal\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Redirect/RedirectHandlerTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 4
+			path: ../../typo3/sysext/felogin/Tests/Unit/Redirect/RedirectHandlerTest.php
+
+		-
+			message: "#^PHPDoc tag @param references unknown parameter\\: \\$settings$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Redirect/RedirectHandlerTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\FrontendLogin\\\\Tests\\\\Unit\\\\Redirect\\\\RedirectHandlerTest\\:\\:\\$redirectModeHandler \\(TYPO3\\\\CMS\\\\FrontendLogin\\\\Redirect\\\\RedirectModeHandler\\) does not accept Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Redirect/RedirectHandlerTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\FrontendLogin\\\\Tests\\\\Unit\\\\Redirect\\\\RedirectHandlerTest\\:\\:\\$serverRequestHandler \\(TYPO3\\\\CMS\\\\FrontendLogin\\\\Redirect\\\\ServerRequestHandler\\) does not accept Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Redirect/RedirectHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:addReplyTo\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:assignMultiple\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:send\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setCreateAbsoluteUri\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:subject\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:to\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:uriFor\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Symfony\\\\Component\\\\Mime\\\\Address\\:\\:willReturn\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Fluid\\\\View\\\\TemplatePaths\\:\\:willReturn\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalledOnce\\(\\) on void\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Result of method TYPO3\\\\CMS\\\\FrontendLogin\\\\Domain\\\\Repository\\\\FrontendUserRepository\\:\\:updateForgotHashForUserByEmail\\(\\) \\(void\\) is used\\.$#"
+			count: 1
+			path: ../../typo3/sysext/felogin/Tests/Unit/Service/RecoveryServiceTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 4
+			path: ../../typo3/sysext/felogin/Tests/Unit/Validation/RedirectUrlValidatorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/filelist/Classes/Controller/File/EditFileController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/filelist/Classes/Controller/File/RenameFileController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/filelist/Classes/Controller/FileListController.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Filemetadata\\\\Tests\\\\Functional\\\\Tca\\\\FileMetadataVisibleFieldsTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/filemetadata/Tests/Functional/Tca/FileMetadataVisibleFieldsTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface&TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerActionName\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Classes/Core/Rendering/RenderingContext.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface&TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerName\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Classes/Core/Rendering/RenderingContext.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface&TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:setControllerActionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/Core/Rendering/RenderingContext.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface&TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:setControllerName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/Core/Rendering/RenderingContext.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:getFormat\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/View/StandaloneView.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:setFormat\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/View/StandaloneView.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Fluid\\\\View\\\\TemplatePaths\\:\\:ensureAbsolutePath\\(\\) should return string but returns array\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/View/TemplatePaths.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/Buttons/CshViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getPluginName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/Buttons/CshViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/Labels/CshViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getPluginName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/Labels/CshViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/Menus/ActionMenuItemViewHelper.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Fluid\\\\ViewHelpers\\\\Be\\\\Menus\\\\ActionMenuViewHelper\\:\\:compile\\(\\) should return string but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/Menus/ActionMenuViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/PageRendererViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerExtensionKey\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Be/PageRendererViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/FlashMessagesViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerExtensionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/FlashMessagesViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getPluginName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/FlashMessagesViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Form/AbstractFormFieldViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getOriginalRequest\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Form/AbstractFormFieldViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getOriginalRequestMappingResults\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Form/AbstractFormFieldViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Form/ValidationResultsViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerActionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerExtensionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/FormViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Format/HtmlViewHelper.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Fluid\\\\ViewHelpers\\\\Format\\\\HtmlentitiesDecodeViewHelper\\:\\:renderStatic\\(\\) should return string but returns mixed\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Format/HtmlentitiesDecodeViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Link/ActionViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Link/EmailViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Link/PageViewHelper.php
+
+		-
+			message: "#^Offset 'onFailure' does not exist on array\\{selector\\: string\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Transform/HtmlViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/TranslateViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerExtensionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/TranslateViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Uri/ActionViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Uri/PageViewHelper.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface&TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerExtensionKey\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Uri/ResourceViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:getControllerExtensionKey\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Classes/ViewHelpers/Uri/ResourceViewHelper.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/View/TemplatesPathsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/View/TemplatesPathsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/View/TemplatesPathsTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/View/TemplatesPathsTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/View/TemplatesPathsTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Fluid\\\\Tests\\\\Functional\\\\View\\\\TemplatesPathsTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/View/TemplatesPathsTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Fluid\\\\Tests\\\\Functional\\\\ViewHelpers\\\\CObjectViewHelperTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/CObjectViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/CObjectViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/CObjectViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/CObjectViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/CObjectViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/CObjectViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Container\\\\ContainerInterface\\:\\:set\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Form/SelectViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Format/HtmlViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Format/HtmlViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Format/HtmlViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Format/HtmlViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Format/HtmlViewHelperTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Fluid\\\\Tests\\\\Functional\\\\ViewHelpers\\\\Link\\\\EmailViewHelperTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/EmailViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/EmailViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/EmailViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/EmailViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/EmailViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/EmailViewHelperTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Fluid\\\\Tests\\\\Functional\\\\ViewHelpers\\\\Link\\\\FileViewHelperTest\\:\\:\\$pathsToProvideInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToProvideInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/FileViewHelperTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Fluid\\\\Tests\\\\Functional\\\\ViewHelpers\\\\Link\\\\PageViewHelperTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/PageViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/PageViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/TypolinkViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/TypolinkViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/TypolinkViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/TypolinkViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Link/TypolinkViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Transform/HtmlViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Transform/HtmlViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Transform/HtmlViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Transform/HtmlViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Transform/HtmlViewHelperTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Fluid\\\\Tests\\\\Functional\\\\ViewHelpers\\\\Uri\\\\PageViewHelperTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/PageViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/PageViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/PageViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/TypolinkViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/TypolinkViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/TypolinkViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/TypolinkViewHelperTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid/Tests/Functional/ViewHelpers/Uri/TypolinkViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\FluidStyledContent\\\\Tests\\\\Functional\\\\Rendering\\\\SecureHtmlRenderingTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^Unsafe access to private constant TYPO3\\\\CMS\\\\FluidStyledContent\\\\Tests\\\\Functional\\\\Rendering\\\\SecureHtmlRenderingTest\\:\\:LANGUAGE_PRESETS through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\FluidStyledContent\\\\Tests\\\\Functional\\\\Tca\\\\ContentVisibleFieldsTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/Functional/Tca/ContentVisibleFieldsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/FunctionalDeprecated/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/FunctionalDeprecated/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/FunctionalDeprecated/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/FunctionalDeprecated/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/FunctionalDeprecated/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\FluidStyledContent\\\\Tests\\\\FunctionalDeprecated\\\\Rendering\\\\SecureHtmlRenderingTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/fluid_styled_content/Tests/FunctionalDeprecated/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^Unsafe access to private constant TYPO3\\\\CMS\\\\FluidStyledContent\\\\Tests\\\\FunctionalDeprecated\\\\Rendering\\\\SecureHtmlRenderingTest\\:\\:LANGUAGE_PRESETS through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/fluid_styled_content/Tests/FunctionalDeprecated/Rendering/SecureHtmlRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:getArguments\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Controller/FormEditorController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:setRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Controller/FormEditorController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setVariablesToRender\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Controller/FormEditorController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Mvc\\\\Persistence\\\\FormPersistenceManagerInterface\\:\\:isAllowedPersistencePath\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/form/Classes/Controller/FormEditorController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setVariablesToRender\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/form/Classes/Controller/FormManagerController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Mvc\\\\Persistence\\\\FormPersistenceManagerInterface\\:\\:getUniqueIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/form/Classes/Controller/FormManagerController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Mvc\\\\Persistence\\\\FormPersistenceManagerInterface\\:\\:isAllowedPersistencePath\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/form/Classes/Controller/FormManagerController.php
+
+		-
+			message: "#^Call to sprintf contains 4 placeholders, 5 values given\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php
+
+		-
+			message: "#^Variable \\$formElements on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 2
+			path: ../../typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php
+
+		-
+			message: "#^Undefined variable\\: \\$optionValue$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Configuration/FormDefinition/Converters/FinisherOptionsFlexFormOverridesConverter.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\AbstractFinisher\\:\\:parseOption\\(\\) should return array\\|string\\|null but returns mixed\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/AbstractFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\ClosureFinisher\\:\\:executeInternal\\(\\) should return string\\|null but empty return statement found\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/ClosureFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\ClosureFinisher\\:\\:executeInternal\\(\\) should return string\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/ClosureFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\DeleteUploadsFinisher\\:\\:executeInternal\\(\\) should return string\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/DeleteUploadsFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\EmailFinisher\\:\\:executeInternal\\(\\) should return string\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/EmailFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\FlashMessageFinisher\\:\\:executeInternal\\(\\) should return string\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/FlashMessageFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\RedirectFinisher\\:\\:executeInternal\\(\\) should return string\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/RedirectFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Finishers\\\\SaveToDatabaseFinisher\\:\\:executeInternal\\(\\) should return string\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Finishers/SaveToDatabaseFinisher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormDefinition\\:\\:getPageByIndex\\(\\) should return TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormElements\\\\Page but returns TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\Renderable\\\\RenderableInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Model/FormDefinition.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormDefinition\\:\\:getPages\\(\\) should return array\\<TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormElements\\\\Page\\> but returns array\\<TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\Renderable\\\\RenderableInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Model/FormDefinition.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormElements\\\\FormElementInterface\\:\\:setOptions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Model/FormElements/AbstractSection.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormElements\\\\AbstractSection\\:\\:getElements\\(\\) should return array\\<TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormElements\\\\FormElementInterface\\> but returns array\\<TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\Renderable\\\\RenderableInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Model/FormElements/AbstractSection.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormElements\\\\AbstractSection\\:\\:getElementsRecursively\\(\\) should return array\\<TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormElements\\\\FormElementInterface\\> but returns array\\<TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\Renderable\\\\RenderableInterface\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Model/FormElements/AbstractSection.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:setRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Domain/Renderer/FluidFormRenderer.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/EventListener/ProcessFileListActionsEventListener.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\Renderable\\\\RenderableInterface\\:\\:getRootForm\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Hooks/FormElementHooks.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Mvc\\\\Persistence\\\\FormPersistenceManagerInterface\\:\\:hasValidFileExtension\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Hooks/FormPagePreviewRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Mvc\\\\Persistence\\\\FormPersistenceManager\\:\\:getOrCreateFile\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File but returns TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Mvc/Persistence/FormPersistenceManager.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\Renderable\\\\RenderableInterface\\:\\:getRootForm\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Mvc/Property/PropertyMappingConfiguration.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Form\\\\Mvc\\\\Property\\\\TypeConverter\\\\UploadedFileReferenceConverter\\:\\:\\$sourceTypes is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\CMS\\\\Extbase\\\\Property\\\\TypeConverter\\\\AbstractTypeConverter\\:\\:\\$sourceTypes\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Mvc/Property/TypeConverter/UploadedFileReferenceConverter.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\Renderable\\\\RootRenderableInterface\\:\\:getProperties\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/Service/TranslationService.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Classes/ViewHelpers/RenderViewHelper.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Form\\\\Tests\\\\Functional\\\\Mvc\\\\Validation\\\\MimeTypeValidatorTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Functional/Mvc/Validation/MimeTypeValidatorTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Form\\\\Tests\\\\Functional\\\\ViewHelpers\\\\UploadedResourceViewHelperTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Functional/ViewHelpers/UploadedResourceViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPrototypeConfiguration\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:resolvePossibleTypoScriptConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAccessibleExtensionFolders\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAccessibleFormStorageFolders\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAllReferencesForFileUid\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAllReferencesForPersistenceIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getIconForRecord\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPublicUrl\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getReferencesByPersistenceIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getStorage\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isPublic\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:listForms\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Controller/FormManagerControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Configuration/ConfigurationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createElement\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Factory/ArrayFormFactoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getElementByIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFinisherVariableProvider\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFormRuntime\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:offsetExists\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:offsetGet\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Domain\\\\Model\\\\FormDefinition\\:\\:willReturn\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on bool\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Class TYPO3\\\\CMS\\\\Form\\\\Tests\\\\Unit\\\\Domain\\\\Finishers\\\\FormElementInterface not found\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/AbstractFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFormRuntime\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/ClosureFinisherTest.php
+
+		-
+			message: "#^Method TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:_call\\(\\) invoked with 2 parameters, 1 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/ClosureFinisherTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$cObj\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:cancel\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFormRuntime\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getResponse\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:translateFinisherOption\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:typoLink_URL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^PHPDoc tag @throws with type TYPO3\\\\CMS\\\\Extbase\\\\Object\\\\Exception is not subtype of Throwable$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Finishers/RedirectFinisherTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Domain/Runtime/FormRuntimeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Hooks/DataStructureIdentifierHookTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Hooks/DataStructureIdentifierHookTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:listForms\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Hooks/DataStructureIdentifierHookTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Hooks/DataStructureIdentifierHookTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Form\\\\Mvc\\\\Configuration\\\\InheritancesResolverService\\:\\:getResolvedConfiguration\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 9
+			path: ../../typo3/sysext/form/Tests/Unit/Mvc/Configuration/InheritancesResolverServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isPropertyValueEqualToHistoricalValue\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Mvc/Property/TypeConverter/FormDefinitionArrayConverterTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:validateFormDefinitionProperties\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Mvc/Property/TypeConverter/FormDefinitionArrayConverterTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Service/TranslationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Service/TranslationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getParsedData\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/form/Tests/Unit/Service/TranslationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/form/Tests/Unit/Service/TranslationServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Form\\\\Service\\\\TranslationService\\:\\:_call\\(\\)\\.$#"
+			count: 38
+			path: ../../typo3/sysext/form/Tests/Unit/Service/TranslationServiceTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on array\\.$#"
+			count: 3
+			path: ../../typo3/sysext/form/Tests/Unit/Service/TranslationServiceTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on string\\.$#"
+			count: 5
+			path: ../../typo3/sysext/form/Tests/Unit/Service/TranslationServiceTest.php
+
+		-
+			message: "#^Parameter \\$event of method TYPO3\\\\CMS\\\\Frontend\\\\Composer\\\\InstallerScripts\\:\\:register\\(\\) has invalid type Composer\\\\Script\\\\Event\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Classes/Composer/InstallerScripts.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\SiteInterface\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:getFileDataKey\\(\\) should return int\\|string but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:round\\(\\) should return string but returns float\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:splitObj\\(\\) should return string but returns int\\<0, max\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:stdWrap_intval\\(\\) should return string but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:stdWrap_numRows\\(\\) should return string but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:stdWrap_prioriCalc\\(\\) should return string but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:stdWrap_strtotime\\(\\) should return string but returns int\\|false\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\:\\:typoLink\\(\\) should return string but returns TYPO3\\\\CMS\\\\Frontend\\\\Typolink\\\\LinkResultInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Unary operation \"\\-\" on int\\<1, max\\>\\|string results in an error\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 28
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Variable \\$configuration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Variable \\$fileArray on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 11
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Variable \\$pidConf in isset\\(\\) always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Variable \\$temp in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Variable \\$valArr in empty\\(\\) always exists and is not falsy\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/FilesContentObject.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:setControllerActionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:setControllerExtensionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:setControllerName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\:\\:setPluginName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContextInterface\\:\\:setRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/HierarchicalMenuContentObject.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 7
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ImageContentObject.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\Menu\\\\AbstractMenuContentObject\\:\\:getCurrentSite\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\Site but returns TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\SiteInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php
+
+		-
+			message: "#^Variable \\$configuration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/Menu/CategoryMenuUtility.php
+
+		-
+			message: "#^Offset mixed does not exist on array\\{\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php
+
+		-
+			message: "#^Offset mixed on array\\{\\} on left side of \\?\\? does not exist\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Classes/ContentObject/ScalableVectorGraphicsContentObject.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\SiteInterface\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php
+
+		-
+			message: "#^Variable \\$processorConfiguration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/CommaSeparatedValueProcessor.php
+
+		-
+			message: "#^Variable \\$processorConfiguration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/DatabaseQueryProcessor.php
+
+		-
+			message: "#^Variable \\$processorConfiguration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/FilesProcessor.php
+
+		-
+			message: "#^Variable \\$referenceConfiguration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/FilesProcessor.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\DataProcessing\\\\GalleryProcessor\\:\\:getCroppedDimensionalProperty\\(\\) should return int but returns string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/GalleryProcessor.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\DataProcessing\\\\LanguageMenuProcessor\\:\\:getCurrentSite\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\Site but returns TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\SiteInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/LanguageMenuProcessor.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/LanguageMenuProcessor.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\DataProcessing\\\\SiteProcessor\\:\\:getCurrentSite\\(\\) should return TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\Site\\|null but returns TYPO3\\\\CMS\\\\Core\\\\Site\\\\Entity\\\\SiteInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/SiteProcessor.php
+
+		-
+			message: "#^Variable \\$processorConfiguration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/DataProcessing/SplitProcessor.php
+
+		-
+			message: "#^Variable \\$compressJs on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Http/RequestHandler.php
+
+		-
+			message: "#^Variable \\$iCSScode on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Http/RequestHandler.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\Imaging\\\\GifBuilder\\:\\:calculateValue\\(\\) should return int but returns float\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Imaging/GifBuilder.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\Imaging\\\\GifBuilder\\:\\:checkTextObj\\(\\) should return array but returns null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Imaging/GifBuilder.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Context\\\\AspectInterface\\:\\:isPreview\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php
+
+		-
+			message: "#^Variable \\$configuration on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Page/CacheHashCalculator.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\Frontend\\\\Plugin\\\\AbstractPlugin has an unused parameter \\$_\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\Plugin\\\\AbstractPlugin\\:\\:pi_autoCache\\(\\) should return bool\\|null but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\Plugin\\\\AbstractPlugin\\:\\:pi_isOnlyFields\\(\\) should return bool\\|null but returns int\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
+
+		-
+			message: "#^Cannot unset offset 'parameter\\.' on array\\{parameter\\: mixed\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php
+
+		-
+			message: "#^Variable \\$conf on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSessionData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$tsfe \\\\TYPO3\\\\CMS\\\\Frontend\\\\Controller\\\\TypoScriptFrontendController\\)\\: Unexpected token \"\\$tsfe\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Functional/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\ContentObject\\\\FluidTemplateContentObjectTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_call\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\Controller\\\\TypoScriptFrontendControllerTest\\:\\:\\$tsFrontendController with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\Controller\\\\TypoScriptFrontendController is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:isMissing\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Imaging/GifBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Middleware/BackendUserAuthenticatorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Middleware/BackendUserAuthenticatorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Middleware/BackendUserAuthenticatorTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Middleware/BackendUserAuthenticatorTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Middleware/BackendUserAuthenticatorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/LocalizedSiteContentRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/LocalizedSiteContentRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/LocalizedSiteContentRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/LocalizedSiteContentRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/LocalizedSiteContentRenderingTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\Rendering\\\\LocalizedSiteContentRenderingTest\\:\\:\\$pathsToLinkInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToLinkInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/LocalizedSiteContentRenderingTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\Rendering\\\\LocalizedSiteContentRenderingTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/LocalizedSiteContentRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectations\\)\\: Unexpected token \"\\$expectations\", expected type at offset 44$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/TitleTagRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$pageConfig\\)\\: Unexpected token \"\\$pageConfig\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/TitleTagRenderingTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\Rendering\\\\TitleTagRenderingTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/TitleTagRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/UriPrefixRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/UriPrefixRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/UriPrefixRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/UriPrefixRenderingTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/UriPrefixRenderingTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\Rendering\\\\UriPrefixRenderingTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/Rendering/UriPrefixRenderingTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\SiteHandling\\\\AbstractTestCase\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/ApplicableConjunction.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/AspectDeclaration.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Functional\\\\SiteHandling\\\\Framework\\\\Builder\\\\Applicable\\:\\:getConfiguration\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/Builder.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/Builder.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/EnhancerDeclaration.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/ExceptionExpectation.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/LanguageContext.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/PageTypeDeclaration.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/Permutation.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/TestSet.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/Variable.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariableCompiler.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariableItem.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariableValue.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/Variables.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariablesContext.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:andX\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createAnonymousSession\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createFromRequestOrAnonymous\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createNamedParameter\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:elevateToFixatedUserSession\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:eq\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:executeQuery\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:expr\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchAssociative\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:from\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCookieParams\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryBuilderForTable\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryParams\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:in\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:select\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setRestrictions\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:updateSession\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:where\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSession\\:\\:shouldBeCalled\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSession\\:\\:shouldNotBeCalled\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSession\\:\\:willReturn\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Frontend\\\\Authentication\\\\FrontendUserAuthentication\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\:\\:method\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on bool\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on void\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Cannot call method shouldNotBeCalled\\(\\) on void\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Cannot call method willReturn\\(\\) on bool\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSessionManager\\:\\:createAnonymousSession\\(\\) invoked with 1 parameter, 0 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSessionManager\\:\\:createFromRequestOrAnonymous\\(\\) invoked with 1 parameter, 2 required\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSessionManager\\:\\:elevateToFixatedUserSession\\(\\) invoked with 1 parameter, 2\\-3 required\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Result of method TYPO3\\\\CMS\\\\Core\\\\Session\\\\UserSessionManager\\:\\:removeSession\\(\\) \\(void\\) is used\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/Authentication/FrontendUserAuthenticationTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentDataProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:has\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentDataProcessorTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\ContentDataProcessorTest\\:\\:\\$containerProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|Psr\\\\Container\\\\ContainerInterface is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentDataProcessorTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$config\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$currentValKey\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$data\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$parameters\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$parentRecordNumber\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_call\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_get\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_set\\(\\)\\.$#"
+			count: 19
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:calcAge\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:caseshift\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:crop\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:cropHTML\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getATagParams\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getContentObject\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getCurrentFile\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getCurrentTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getCurrentVal\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getData\\(\\)\\.$#"
+			count: 46
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getFieldVal\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getImgResource\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getQueryArguments\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:getUserObjectType\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:numberFormat\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:prefixComment\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:registerContentObjectClass\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:render\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:setContentObjectClassMap\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:setCurrentFile\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:setCurrentVal\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:setLogger\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:setUserObjectType\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:splitObj\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrapValue\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_addPageCacheTags\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_br\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_brTag\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_bytes\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_char\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_csConv\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_current\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_date\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_debug\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_debugData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_debugFunc\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_doubleBrTag\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_encapsLines\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_encodeForJavaScriptValue\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_expandList\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_fieldRequired\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_hash\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_htmlSpecialChars\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_ifBlank\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_ifEmpty\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_ifNull\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_innerWrap\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_innerWrap2\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_insertData\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_intval\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_keywords\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_lang\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_noTrimWrap\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_outerWrap\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_override\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_prioriCalc\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_rawUrlEncode\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_required\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_setContentToCurrent\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_setCurrent\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_strPad\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_strftime\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_stripHtml\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_strtotime\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_trim\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_wrap\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_wrap2\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_wrap3\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:stdWrap_wrapAlign\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:substring\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:typoLink\\(\\)\\.$#"
+			count: 12
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 9
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:resolve\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:warning\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\ContentObjectRendererTest\\:\\:stdWrapBrDataProvider\\(\\) should return array\\<array\\<string\\>\\> but returns array\\<string, array\\<int, string\\|null\\>\\>\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Offset 'INTincScript' does not exist on array\\{\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @param for parameter \\$content with type mixed is not subtype of native type string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$configuration\\)\\: Unexpected token \"\\$configuration\", expected type at offset 42$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$disable\\)\\: Unexpected token \"\\$disable\", expected type at offset 613$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$expectedResult\\)\\: Unexpected token \"\\$expectedResult\", expected type at offset 71$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$imageResource\\)\\: Unexpected token \"\\$imageResource\", expected type at offset 160$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$linkText\\)\\: Unexpected token \"\\$linkText\", expected type at offset 18$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\ContentObjectRendererTest\\:\\:\\$cacheManager with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Cache\\\\CacheManager is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\ContentObjectRendererTest\\:\\:\\$frontendControllerMock with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\Controller\\\\TypoScriptFrontendController\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\ContentObjectRendererTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:generateRandomHexString\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Exception/ProductionExceptionHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:render\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FilesContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\FilesContentObjectTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\FilesContentObject is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FilesContentObjectTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$currentValKey\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$data\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:render\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:assign\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:assignMultiple\\(\\)\\.$#"
+			count: 27
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:cObjGetSingle\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFormat\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRequest\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 28
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:renderSection\\(\\)\\.$#"
+			count: 27
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setControllerActionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setControllerExtensionName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setControllerName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setFormat\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setLayoutRootPaths\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setPartialRootPaths\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setPluginName\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setTemplate\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setTemplatePathAndFilename\\(\\)\\.$#"
+			count: 23
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setTemplateRootPaths\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setTemplateSource\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:stdWrap\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:stdWrapValue\\(\\)\\.$#"
+			count: 35
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\FluidTemplateContentObjectTest\\:\\:\\$contentObjectRenderer with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\FluidTemplateContentObjectTest\\:\\:\\$request with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\Request is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\FluidTemplateContentObjectTest\\:\\:\\$standaloneView with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Fluid\\\\View\\\\StandaloneView is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\FluidTemplateContentObjectTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\FluidTemplateContentObject\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$tsfe TypoScriptFrontendController\\)\\: Unexpected token \"\\$tsfe\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_call\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ImageContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\ImageContentObjectTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ImageContentObject is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ImageContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$cObj MockObject\\|ContentObjectRenderer\\)\\: Unexpected token \"\\$cObj\", expected type at offset 9$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/ImageContentObjectTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$parent_cObj\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_call\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_set\\(\\)\\.$#"
+			count: 19
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createFromSiteLanguage\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:fetchAssociative\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getConnectionForTable\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getExpressionBuilder\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:quoteIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @param for parameter \\$oTarget with type mixed is not subtype of native type string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\ContentObject\\\\Menu\\\\AbstractMenuContentObjectTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\Menu\\\\AbstractMenuContentObject is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/ContentObject/Menu/AbstractMenuContentObjectTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCopyrightYear\\(\\)\\.$#"
+			count: 7
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/ErrorControllerTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$baseUrl\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$cObj\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$config\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$indexedDocTitle\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$linkVars\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$page\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_call\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:_set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:baseUrlWrap\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:calculateLinkVars\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:generatePageTitle\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:sL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:create\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:createFromSiteLanguage\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCache\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPageTitleCache\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getTitle\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:render\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:set\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:stdWrapValue\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\Controller\\\\TypoScriptFrontendControllerTest\\:\\:\\$subject with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\Controller\\\\TypoScriptFrontendController\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Controller/TypoScriptFrontendControllerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:convertFlexFormContentToArray\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/DataProcessing/FlexFormProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:process\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/DataProcessing/FlexFormProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:start\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/DataProcessing/FlexFormProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:stdWrapValue\\(\\)\\.$#"
+			count: 12
+			path: ../../typo3/sysext/frontend/Tests/Unit/DataProcessing/FlexFormProcessorTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\DataProcessing\\\\FlexFormProcessorTest\\:\\:\\$contentObjectRenderer with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/DataProcessing/FlexFormProcessorTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSite\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/DataProcessing/SiteProcessorTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$cObj\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$config\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$pSetup\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$page\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$tmpl\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:INTincScript_loadJSCode\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:cObjGet\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:dispatch\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:generatePageTitle\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getInlineHeaderComment\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setMetaTag\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:stdWrap\\(\\)\\.$#"
+			count: 5
+			path: ../../typo3/sysext/frontend/Tests/Unit/Http/RequestHandlerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getCopyrightYear\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/frontend/Tests/Unit/Middleware/PageArgumentValidatorTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\Middleware\\\\PageArgumentValidatorTest\\:\\:\\$subject with type TYPO3\\\\CMS\\\\Frontend\\\\Middleware\\\\PageResolver\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface is not subtype of native type TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Middleware/PageArgumentValidatorTest.php
+
+		-
+			message: "#^Variable \\$language in PHPDoc tag @var does not exist\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Middleware/SiteBaseRedirectResolverTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\Middleware\\\\SiteResolverTest\\:\\:\\$siteFinder with type TYPO3\\\\CMS\\\\Core\\\\Site\\\\SiteFinder\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface is not subtype of native type TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Middleware/SiteResolverTest.php
+
+		-
+			message: "#^Variable \\$language in PHPDoc tag @var does not exist\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Middleware/SiteResolverTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:baseUrlWrap\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Plugin/AbstractPluginTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLanguage\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Plugin/AbstractPluginTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$data\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Processor/GalleryProcessorTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\Processor\\\\GalleryProcessorTest\\:\\:\\$contentObjectRenderer with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\ContentObject\\\\ContentObjectRenderer is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Processor/GalleryProcessorTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$absRefPrefix\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/AbstractTypolinkBuilderTest.php
+
+		-
+			message: "#^Access to an undefined property PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\:\\:\\$config\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/AbstractTypolinkBuilderTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Frontend\\\\Tests\\\\Unit\\\\Typolink\\\\AbstractTypolinkBuilderTest\\:\\:\\$frontendControllerMock with type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\|TYPO3\\\\CMS\\\\Frontend\\\\Controller\\\\TypoScriptFrontendController\\|TYPO3\\\\TestingFramework\\\\Core\\\\AccessibleObjectInterface is not subtype of native type PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/AbstractTypolinkBuilderTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$sys_page\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Access to an undefined property Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:\\$tmpl\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:checkRecord\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getContext\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPagesTSconfig\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRequest\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:start\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:typoLink\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/frontend/Tests/Unit/Typolink/DatabaseRecordLinkBuilderTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface\\:\\:getUid\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/impexp/Classes/Import.php
+
+		-
+			message: "#^Offset 'updatePath' does not exist on array\\{msg\\: string, ref\\: 'FILE', type\\: 'file', preCode\\: non\\-empty\\-string, title\\: string, showDiffContent\\: string\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Classes/ImportExport.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\AbstractImportExportTestCase\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/AbstractImportExportTestCase.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Export\\\\ExportPageTreeViewTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Export/ExportPageTreeViewTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Export\\\\IrreTutorialRecordsTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Export/IrreTutorialRecordsTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Export\\\\PagesAndTtContentTest\\:\\:\\$pathsToLinkInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToLinkInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Export/PagesAndTtContentTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Export\\\\PagesAndTtContentTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Export/PagesAndTtContentTest.php
+
+		-
+			message: "#^PHPDoc tag @param has invalid value \\(\\$subject Export\\)\\: Unexpected token \"\\$subject\", expected type at offset 69$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Export/PagesAndTtContentWithImagesTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Export\\\\PagesAndTtContentWithImagesTest\\:\\:\\$pathsToLinkInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToLinkInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Export/PagesAndTtContentWithImagesTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Export\\\\PagesAndTtContentWithRelationsAndSoftrefsTest\\:\\:\\$pathsToLinkInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToLinkInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Export/PagesAndTtContentWithRelationsAndSoftrefsTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\ExportTest\\:\\:\\$pathsToProvideInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToProvideInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/ExportTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\ExportTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/ExportTest.php
+
+		-
+			message: "#^Array has 2 duplicate keys with value 'msg' \\('msg', 'msg'\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Fixtures/ArrayAssertions/RenderPreviewExportRecords.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Import\\\\IrreTutorialRecordsTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Import/IrreTutorialRecordsTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\Import\\\\PagesAndTtContentWithImagesInFilledDatabaseTest\\:\\:\\$pathsToProvideInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToProvideInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/Import/PagesAndTtContentWithImagesInFilledDatabaseTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\ImportExportTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/ImportExportTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Impexp\\\\Tests\\\\Functional\\\\ImportTest\\:\\:\\$pathsToLinkInTestInstance is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$pathsToLinkInTestInstance\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/ImportTest.php
+
+		-
+			message: "#^Variable \\$subject in PHPDoc tag @var does not match assigned variable \\$importMock\\.$#"
+			count: 1
+			path: ../../typo3/sysext/impexp/Tests/Functional/ImportTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface\\:\\:setArguments\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/indexed_search/Classes/Controller/AdministrationController.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\IndexedSearch\\\\Utility\\\\DoubleMetaPhoneUtility\\:\\:\\$pObj\\.$#"
+			count: 1
+			path: ../../typo3/sysext/indexed_search/Classes/Indexer.php
+
+		-
+			message: "#^Offset int\\<0, max\\> does not exist on array\\{\\}\\.$#"
+			count: 1
+			path: ../../typo3/sysext/indexed_search/Classes/Indexer.php
+
+		-
+			message: "#^Parameter \\$event of method TYPO3\\\\CMS\\\\Install\\\\Composer\\\\InstallerScripts\\:\\:register\\(\\) has invalid type Composer\\\\Script\\\\Event\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Classes/Composer/InstallerScripts.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\AbstractAuthenticationService\\:\\:authUser\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/Controller/BackendModuleController.php
+
+		-
+			message: "#^Cannot call method getServiceKey\\(\\) on array\\<string\\>\\|object\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/Controller/BackendModuleController.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\CodeStatistics\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/CodeStatistics.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\ArrayDimensionMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/ArrayDimensionMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\ArrayGlobalMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/ArrayGlobalMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\ClassConstantMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/ClassConstantMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\ClassNameMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/ClassNameMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\ConstantMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/ConstantMatcher.php
+
+		-
+			message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$args\\.$#"
+			count: 5
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/ConstructorArgumentMatcher.php
+
+		-
+			message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$class\\.$#"
+			count: 5
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/ConstructorArgumentMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\FunctionCallMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/FunctionCallMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodAnnotationMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodAnnotationMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodArgumentDroppedMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodArgumentDroppedMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodArgumentDroppedStaticMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodArgumentDroppedStaticMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodArgumentRequiredMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodArgumentRequiredMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodArgumentRequiredStaticMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodArgumentRequiredStaticMatcher.php
+
+		-
+			message: "#^Access to an undefined property PhpParser\\\\Node\\\\Expr\\:\\:\\$name\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodArgumentUnusedMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodArgumentUnusedMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodArgumentUnusedMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodCallMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodCallMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\MethodCallStaticMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/MethodCallStaticMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\PropertyAnnotationMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/PropertyAnnotationMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\PropertyExistsStaticMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/PropertyExistsStaticMatcher.php
+
+		-
+			message: "#^Access to an undefined property PhpParser\\\\Node\\\\Expr\\:\\:\\$name\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/PropertyProtectedMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\PropertyProtectedMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/PropertyProtectedMatcher.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\ExtensionScanner\\\\Php\\\\Matcher\\\\PropertyPublicMatcher\\:\\:enterNode\\(\\) should return int\\|PhpParser\\\\Node\\|null but return statement is missing\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/ExtensionScanner/Php/Matcher/PropertyPublicMatcher.php
+
+		-
+			message: "#^PHPDoc tag @var for constant TYPO3\\\\CMS\\\\Install\\\\Service\\\\EnableFileService\\:\\:INSTALL_TOOL_ENABLE_FILE_LIFETIME with type string is incompatible with value 3600\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/Service/EnableFileService.php
+
+		-
+			message: "#^Offset string on array\\{\\} on left side of \\?\\? does not exist\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Classes/Service/LanguagePackService.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Install\\\\Service\\\\Session\\\\FileSessionHandler\\:\\:gc\\(\\) should return int\\|false but returns true\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Classes/Service/Session/FileSessionHandler.php
+
+		-
+			message: "#^Unsafe access to private property TYPO3\\\\CMS\\\\Install\\\\SystemEnvironment\\\\DatabaseCheck\\:\\:\\$databaseDriverToPlatformMapping through static\\:\\:\\.$#"
+			count: 4
+			path: ../../typo3/sysext/install/Classes/SystemEnvironment/DatabaseCheck.php
+
+		-
+			message: "#^Unsafe access to private property TYPO3\\\\CMS\\\\Install\\\\SystemEnvironment\\\\DatabaseCheck\\:\\:\\$driverMap through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Classes/SystemEnvironment/DatabaseCheck.php
+
+		-
+			message: "#^Variable \\$user on left side of \\?\\? is never defined\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Classes/Updates/BackendUserLanguageMigration.php
+
+		-
+			message: "#^Access to an undefined property TYPO3\\\\CMS\\\\Install\\\\Tests\\\\Functional\\\\Updates\\\\RowUpdater\\\\WorkspaceNewPlaceholderRemovalTest\\:\\:\\$actionService\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Functional/Updates/RowUpdater/WorkspaceNewPlaceholderRemovalTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Install\\\\Tests\\\\Functional\\\\Updates\\\\RowUpdater\\\\WorkspaceNewPlaceholderRemovalTest\\:\\:\\$testExtensionsToLoad is not covariant with PHPDoc type array\\<string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$testExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Functional/Updates/RowUpdater/WorkspaceNewPlaceholderRemovalTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Install\\\\Tests\\\\Functional\\\\Updates\\\\ShortcutRecordsMigrationTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Functional/Updates/ShortcutRecordsMigrationTest.php
+
+		-
+			message: "#^Call to an undefined method Psr\\\\Container\\\\ContainerInterface\\:\\:set\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Functional/ViewHelpers/Format/PhpErrorCodeViewHelperTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getQueryParams\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/Controller/UpgradeControllerTest.php
+
+		-
+			message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$expr\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/GeneratorClassesResolverTest.php
+
+		-
+			message: "#^Cannot access property \\$args on null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/GeneratorClassesResolverTest.php
+
+		-
+			message: "#^Cannot call method getAttribute\\(\\) on null\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/GeneratorClassesResolverTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$node AbstractNode\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$node\", expected type at offset 9$#"
+			count: 20
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/AbstractNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$child NodeInterface\\)\\: Unexpected token \"\\$child\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/DirectoryNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$node DirectoryNode\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$node\", expected type at offset 9$#"
+			count: 26
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/DirectoryNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$node DirectoryNode\\|MockObject\\)\\: Unexpected token \"\\$node\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/DirectoryNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$node FileNode\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$node\", expected type at offset 9$#"
+			count: 39
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/FileNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$node LinkNode\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$node\", expected type at offset 9$#"
+			count: 21
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/LinkNodeTest.php
+
+		-
+			message: "#^Interface TYPO3\\\\CMS\\\\Install\\\\FolderStructure\\\\NodeInterface referenced with incorrect case\\: TYPO3\\\\CMS\\\\install\\\\FolderStructure\\\\NodeInterface\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$child NodeInterface\\)\\: Unexpected token \"\\$child\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$node DirectoryNode\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$node\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$node RootNode\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$node\", expected type at offset 9$#"
+			count: 9
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$facade StructureFacade\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$facade\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/FolderStructure/StructureFacadeTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$instance CoreUpdateService\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$instance\", expected type at offset 9$#"
+			count: 4
+			path: ../../typo3/sysext/install/Tests/Unit/Service/CoreUpdateServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:request\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/Service/CoreVersionServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$instance CoreVersionService\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$instance\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/Service/CoreVersionServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$subject EnableFileService\\|AccessibleObjectInterface\\|MockObject\\)\\: Unexpected token \"\\$subject\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/Service/EnableFileServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLocalConfigurationValueByPath\\(\\)\\.$#"
+			count: 4
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:isAvailable\\(\\)\\.$#"
+			count: 8
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:removeLocalConfigurationKeysByPath\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:setLocalConfigurationValuesByPathValuePairs\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Cannot call method shouldBeCalled\\(\\) on bool\\.$#"
+			count: 5
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Cannot call method shouldNotBeCalled\\(\\) on bool\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Method TYPO3\\\\CMS\\\\Core\\\\Configuration\\\\ConfigurationManager\\:\\:setLocalConfigurationValueByPath\\(\\) invoked with 1 parameter, 2 required\\.$#"
+			count: 2
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$silentConfigurationUpgradeServiceInstance SilentConfigurationUpgradeService\\|MockObject\\|AccessibleObjectInterface\\)\\: Unexpected token \"\\$silentConfigurationUpgradeServiceInstance\", expected type at offset 9$#"
+			count: 14
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Property TYPO3\\\\CMS\\\\Install\\\\Tests\\\\Unit\\\\Service\\\\SilentConfigurationUpgradeServiceTest\\:\\:\\$backupPackageManager \\(TYPO3\\\\CMS\\\\Core\\\\Package\\\\UnitTestPackageManager\\) does not accept TYPO3\\\\CMS\\\\Core\\\\Package\\\\PackageManager\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/Service/SilentConfigurationUpgradeServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:get\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/UpgradeAnalysis/DocumentationFileTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Install\\\\Tests\\\\Unit\\\\UpgradeAnalysis\\\\DocumentationFileTest\\:\\:\\$registry with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Registry is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/install/Tests/Unit/UpgradeAnalysis/DocumentationFileTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Scheduler\\\\Task\\\\AbstractTask\\:\\:setDepth\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/linkvalidator/Classes/Task/ValidatorTaskAdditionalFieldProvider.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Linkvalidator\\\\Tests\\\\Functional\\\\Repository\\\\BrokenLinkRepositoryTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/linkvalidator/Tests/Functional/Repository/BrokenLinkRepositoryTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getResponse\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getStatusCode\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:hasResponse\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:includeLLFile\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:request\\(\\)\\.$#"
+			count: 17
+			path: ../../typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php
+
+		-
+			message: "#^Binary operation \"\\>\\>\" between string and 1 results in an error\\.$#"
+			count: 2
+			path: ../../typo3/sysext/lowlevel/Classes/Database/QueryGenerator.php
+
+		-
+			message: "#^Binary operation \"\\>\\>\" between string and 5 results in an error\\.$#"
+			count: 2
+			path: ../../typo3/sysext/lowlevel/Classes/Database/QueryGenerator.php
+
+		-
+			message: "#^Cannot assign offset 'type' to string\\.$#"
+			count: 2
+			path: ../../typo3/sysext/lowlevel/Classes/Database/QueryGenerator.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getModuleData\\(\\)\\.$#"
+			count: 6
+			path: ../../typo3/sysext/opendocs/Tests/Unit/Service/OpenDocumentServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:pushModuleData\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/opendocs/Tests/Unit/Service/OpenDocumentServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:start\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/opendocs/Tests/Unit/Service/OpenDocumentServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Opendocs\\\\Tests\\\\Unit\\\\Service\\\\OpenDocumentServiceTest\\:\\:\\$backendUser with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Authentication\\\\BackendUserAuthentication is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/opendocs/Tests/Unit/Service/OpenDocumentServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:checkActionPermission\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/Browser/FileBrowser.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/Browser/FileBrowser.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getFiles\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/Browser/FileBrowser.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getReadablePath\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/recordlist/Classes/Browser/FileBrowser.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:searchFiles\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/Browser/FileBrowser.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:setFileAndFolderNameFilters\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/Browser/FileBrowser.php
+
+		-
+			message: "#^Variable \\$MOD_SETTINGS on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/Controller/RecordListController.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/LinkHandler/FileLinkHandler.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/LinkHandler/MailLinkHandler.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/LinkHandler/PageLinkHandler.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/LinkHandler/RecordLinkHandler.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/LinkHandler/TelephoneLinkHandler.php
+
+		-
+			message: "#^Call to an undefined method TYPO3Fluid\\\\Fluid\\\\View\\\\ViewInterface\\:\\:setTemplate\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/LinkHandler/UrlLinkHandler.php
+
+		-
+			message: "#^Cannot assign offset 'currentValue' to string\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$column \\\\SimpleXMLElement\\)\\: Unexpected token \"\\$column\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/recycler/Tests/Functional/Recycle/AbstractRecycleTestCase.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$deletedRecords \\\\TYPO3\\\\CMS\\\\Recycler\\\\Domain\\\\Model\\\\DeletedRecords\\)\\: Unexpected token \"\\$deletedRecords\", expected type at offset 9$#"
+			count: 2
+			path: ../../typo3/sysext/recycler/Tests/Functional/Recycle/AbstractRecycleTestCase.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$table \\\\SimpleXMLElement\\)\\: Unexpected token \"\\$table\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/recycler/Tests/Functional/Recycle/AbstractRecycleTestCase.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Recycler\\\\Tests\\\\Functional\\\\Recycle\\\\AbstractRecycleTestCase\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recycler/Tests/Functional/Recycle/AbstractRecycleTestCase.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Recycler\\\\Task\\\\CleanerFieldProvider\\:\\:expects\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/recycler/Tests/Unit/Task/CleanerFieldProviderTest.php
+
+		-
+			message: "#^Unsafe access to private constant TYPO3\\\\CMS\\\\Redirects\\\\Command\\\\CheckIntegrityCommand\\:\\:REGISTRY_KEY through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/redirects/Classes/Command/CheckIntegrityCommand.php
+
+		-
+			message: "#^Unsafe access to private constant TYPO3\\\\CMS\\\\Redirects\\\\Command\\\\CheckIntegrityCommand\\:\\:REGISTRY_NAMESPACE through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/redirects/Classes/Command/CheckIntegrityCommand.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAllSites\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/IntegrityServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getSiteByIdentifier\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/IntegrityServiceTest.php
+
+		-
+			message: "#^Class TYPO3\\\\CMS\\\\Redirects\\\\Service\\\\RedirectService constructor invoked with 4 parameters, 3 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/IntegrityServiceTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Redirects\\\\Tests\\\\Functional\\\\Service\\\\IntegrityServiceTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/IntegrityServiceTest.php
+
+		-
+			message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Redirects\\\\Tests\\\\Functional\\\\Service\\\\RedirectServiceTest\\)\\:\\:LANGUAGE_PRESETS\\.$#"
+			count: 2
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:resolve\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Redirects\\\\Tests\\\\Functional\\\\Service\\\\RedirectServiceTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Functional/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getAllSites\\(\\)\\.$#"
+			count: 3
+			path: ../../typo3/sysext/redirects/Tests/Unit/FormDataProvider/ValuePickerItemDataProviderTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPublicUrl\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getRedirects\\(\\)\\.$#"
+			count: 10
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:resolve\\(\\)\\.$#"
+			count: 10
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Redirects\\\\Service\\\\RedirectService\\:\\:method\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Class TYPO3\\\\CMS\\\\Redirects\\\\Service\\\\RedirectService constructor invoked with 4 parameters, 3 required\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Redirects\\\\Tests\\\\Unit\\\\Service\\\\RedirectServiceTest\\:\\:\\$linkServiceProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\LinkHandling\\\\LinkService is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Redirects\\\\Tests\\\\Unit\\\\Service\\\\RedirectServiceTest\\:\\:\\$redirectCacheServiceProphecy with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Redirects\\\\Service\\\\RedirectCacheService is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Redirects\\\\Tests\\\\Unit\\\\Service\\\\RedirectServiceTest\\:\\:\\$redirectRepository with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Redirects\\\\Repository\\\\RedirectRepository is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^PHPDoc tag @var for property TYPO3\\\\CMS\\\\Redirects\\\\Tests\\\\Unit\\\\Service\\\\RedirectServiceTest\\:\\:\\$siteFinder with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Site\\\\SiteFinder is not subtype of native type Prophecy\\\\Prophecy\\\\ObjectProphecy\\.$#"
+			count: 1
+			path: ../../typo3/sysext/redirects/Tests/Unit/Service/RedirectServiceTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getLL\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/reports/Tests/Unit/Report/Status/Typo3StatusTest.php
+
+		-
+			message: "#^Constructor of class TYPO3\\\\CMS\\\\RteCKEditor\\\\Form\\\\Resolver\\\\RichTextNodeResolver has an unused parameter \\$nodeFactory\\.$#"
+			count: 1
+			path: ../../typo3/sysext/rte_ckeditor/Classes/Form/Resolver/RichTextNodeResolver.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Scheduler\\\\Tests\\\\Functional\\\\Tca\\\\TaskGroupVisibleFieldsTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/scheduler/Tests/Functional/Tca/TaskGroupVisibleFieldsTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/Canonical/CanonicalGeneratorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/Canonical/CanonicalGeneratorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/Canonical/CanonicalGeneratorTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/Canonical/CanonicalGeneratorTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/Canonical/CanonicalGeneratorTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Seo\\\\Tests\\\\Functional\\\\Canonical\\\\CanonicalGeneratorTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/Canonical/CanonicalGeneratorTest.php
+
+		-
+			message: "#^Unsafe access to private constant TYPO3\\\\CMS\\\\Seo\\\\Tests\\\\Functional\\\\Canonical\\\\CanonicalGeneratorTest\\:\\:LANGUAGE_PRESETS through static\\:\\:\\.$#"
+			count: 2
+			path: ../../typo3/sysext/seo/Tests/Functional/Canonical/CanonicalGeneratorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getArray\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getConstants\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
+
+		-
+			message: "#^Call to an undefined method TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\Framework\\\\Frontend\\\\Internal\\\\AbstractInstruction\\:\\:getTypoScript\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other ArrayValueInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
+
+		-
+			message: "#^PHPDoc tag @var has invalid value \\(\\$other TypoScriptInstruction\\)\\: Unexpected token \"\\$other\", expected type at offset 9$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
+
+		-
+			message: "#^PHPDoc type array\\<string\\> of property TYPO3\\\\CMS\\\\Seo\\\\Tests\\\\Functional\\\\HrefLang\\\\HrefLangGeneratorTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
+
+		-
+			message: "#^PHPDoc tag @var above a method has no effect\\.$#"
+			count: 2
+			path: ../../typo3/sysext/seo/Tests/Functional/XmlSitemap/XmlSitemapRecordsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getBase\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/seo/Tests/Unit/HrefLang/HrefLangGeneratorTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\SysNote\\\\Tests\\\\Functional\\\\Tca\\\\NoteVisibleFieldsTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/sys_note/Tests/Functional/Tca/NoteVisibleFieldsTest.php
+
+		-
+			message: "#^Argument of an invalid type stdClass supplied for foreach, only iterables are supported\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Classes/Controller/Remote/ActionHandler.php
+
+		-
+			message: "#^Unsafe usage of new static\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Classes/Domain/Record/WorkspaceRecord.php
+
+		-
+			message: "#^Offset 0 does not exist on non\\-empty\\-array\\<string, mixed\\>\\.$#"
+			count: 2
+			path: ../../typo3/sysext/workspaces/Classes/Hook/DataHandlerHook.php
+
+		-
+			message: "#^Variable \\$currentWorkspaceId on left side of \\?\\? always exists and is not nullable\\.$#"
+			count: 2
+			path: ../../typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php
+
+		-
+			message: "#^Cannot access an offset on false\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Classes/Service/StagesService.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Workspaces\\\\Tests\\\\Functional\\\\Service\\\\WorkspaceServiceTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Tests/Functional/Service/WorkspaceServiceTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Workspaces\\\\Tests\\\\Functional\\\\Tca\\\\WorkspaceStageVisibleFieldsTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Tests/Functional/Tca/WorkspaceStageVisibleFieldsTest.php
+
+		-
+			message: "#^PHPDoc type array of property TYPO3\\\\CMS\\\\Workspaces\\\\Tests\\\\Functional\\\\Tca\\\\WorkspaceVisibleFieldsTest\\:\\:\\$coreExtensionsToLoad is not covariant with PHPDoc type array\\<int, string\\> of overridden property TYPO3\\\\TestingFramework\\\\Core\\\\Functional\\\\FunctionalTestCase\\:\\:\\$coreExtensionsToLoad\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Tests/Functional/Tca/WorkspaceVisibleFieldsTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getOriginalFile\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getPublicUrl\\(\\)\\.$#"
+			count: 2
+			path: ../../typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getUid\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php
+
+		-
+			message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:process\\(\\)\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php
+
+		-
+			message: "#^PHPDoc tag @return with type Prophecy\\\\Prophecy\\\\ObjectProphecy\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileReference is not subtype of native type TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileReference\\.$#"
+			count: 1
+			path: ../../typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php
+
diff --git a/Build/phpstan/phpstan-constants.php b/Build/phpstan/phpstan-constants.php
new file mode 100644
index 000000000000..0bb0280e19b9
--- /dev/null
+++ b/Build/phpstan/phpstan-constants.php
@@ -0,0 +1,4 @@
+<?php
+
+// testing-framework defines this, used in various tests.
+define('ORIGINAL_ROOT', dirname(__FILE__, 2) . '/');
diff --git a/Build/phpstan/phpstan.neon b/Build/phpstan/phpstan.neon
new file mode 100644
index 000000000000..d76b122124b2
--- /dev/null
+++ b/Build/phpstan/phpstan.neon
@@ -0,0 +1,27 @@
+includes:
+  - phpstan-baseline.neon
+  - ../../vendor/friendsoftypo3/phpstan-typo3/extension.neon
+
+parameters:
+  # Use local .cache dir instead of /tmp
+  tmpDir: ../../.cache/phpstan
+
+  parallel:
+    # Don't be overly greedy on machines with more CPU's to be a good neighbor especially on CI
+    maximumNumberOfProcesses: 5
+
+  level: 3
+
+  bootstrapFiles:
+    - phpstan-constants.php
+
+  paths:
+    - ../../typo3/sysext/
+
+  excludePaths:
+    # Checking acceptance Cest and Support files is cumbersome due to codeception dynamic mixin generation
+    - ../../typo3/sysext/core/Tests/Acceptance/*
+    # These test fixtures *could* be streamlined but currently generate lots of failures
+    - ../../typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/Matcher/Fixtures/*
+    # ext_emconf.php get the $_EXTKEY set from outsite. We'll ignore all of them
+    - ../../typo3/sysext/*/ext_emconf.php
diff --git a/Build/testing-docker/local/docker-compose.yml b/Build/testing-docker/local/docker-compose.yml
index 9f630a76fa6a..63b9fd30d649 100644
--- a/Build/testing-docker/local/docker-compose.yml
+++ b/Build/testing-docker/local/docker-compose.yml
@@ -1230,7 +1230,22 @@ services:
           set -x
         fi
         mkdir -p .cache
-        bin/phpstan analyse --no-progress --no-interaction --memory-limit 4G ${TEST_FILE}
+        bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G ${TEST_FILE}
+      "
+
+  phpstan_generate_baseline:
+    image: typo3/core-testing-${DOCKER_PHP_IMAGE}:latest
+    user: "${HOST_UID}"
+    volumes:
+      - ${CORE_ROOT}:${CORE_ROOT}
+    working_dir: ${CORE_ROOT}
+    command: >
+      /bin/sh -c "
+        if [ ${SCRIPT_VERBOSE} -eq 1 ]; then
+          set -x
+        fi
+        mkdir -p .cache
+        bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G --generate-baseline=Build/phpstan/phpstan-baseline.neon
       "
 
   unit:
diff --git a/composer.json b/composer.json
index 13606ac6afe3..c879c0630b74 100644
--- a/composer.json
+++ b/composer.json
@@ -109,11 +109,11 @@
 		"codeception/module-webdriver": "^1.4.0",
 		"composer/package-versions-deprecated": "^1.11.99.4",
 		"friendsofphp/php-cs-fixer": "^3.4",
-		"friendsoftypo3/phpstan-typo3": "^0.8.1",
+		"friendsoftypo3/phpstan-typo3": "^0.9.0",
 		"php-webdriver/webdriver": "^1.11.1",
 		"phpspec/prophecy": "^1.14.0",
 		"phpspec/prophecy-phpunit": "^2.0",
-		"phpstan/phpstan": "^0.12.99",
+		"phpstan/phpstan": "^1.4.3",
 		"phpunit/phpunit": "^9.5.10",
 		"typo3/cms-styleguide": "~12.0@dev",
 		"typo3/testing-framework": "dev-main"
diff --git a/composer.lock b/composer.lock
index acad7e3603ef..99b44f51e27a 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "b258e92dde2904803082b1cf33525642",
+    "content-hash": "6db47f614f848ad71d3541caab8e88a9",
     "packages": [
         {
             "name": "bacon/bacon-qr-code",
@@ -5984,21 +5984,21 @@
         },
         {
             "name": "friendsoftypo3/phpstan-typo3",
-            "version": "0.8.1",
+            "version": "0.9.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/FriendsOfTYPO3/phpstan-typo3.git",
-                "reference": "5060372cb8d05673c6119e9a5443e9f11a49baa9"
+                "reference": "4d3f45b170983097ca355e9f81d073f34cb130aa"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/FriendsOfTYPO3/phpstan-typo3/zipball/5060372cb8d05673c6119e9a5443e9f11a49baa9",
-                "reference": "5060372cb8d05673c6119e9a5443e9f11a49baa9",
+                "url": "https://api.github.com/repos/FriendsOfTYPO3/phpstan-typo3/zipball/4d3f45b170983097ca355e9f81d073f34cb130aa",
+                "reference": "4d3f45b170983097ca355e9f81d073f34cb130aa",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.2 || ^8.0",
-                "phpstan/phpstan": "^0.12.44"
+                "php": "^7.2 || ^8.0 || ^8.1",
+                "phpstan/phpstan": "^0.12.99 || ^1.2.0"
             },
             "require-dev": {
                 "ergebnis/composer-normalize": "^2.3",
@@ -6021,9 +6021,9 @@
             "description": "TYPO3 rules for PHPStan",
             "support": {
                 "issues": "https://github.com/FriendsOfTYPO3/phpstan-typo3/issues",
-                "source": "https://github.com/FriendsOfTYPO3/phpstan-typo3/tree/0.8.1"
+                "source": "https://github.com/FriendsOfTYPO3/phpstan-typo3/tree/0.9.0"
             },
-            "time": "2021-05-31T08:45:47+00:00"
+            "time": "2022-01-17T07:24:51+00:00"
         },
         {
             "name": "mikey179/vfsstream",
@@ -6484,16 +6484,16 @@
         },
         {
             "name": "phpstan/phpstan",
-            "version": "0.12.99",
+            "version": "1.4.3",
             "source": {
                 "type": "git",
                 "url": "https://github.com/phpstan/phpstan.git",
-                "reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7"
+                "reference": "89d10839dbfc95eeb7da656578b4a899ad2b59b1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b4d40f1d759942f523be267a1bab6884f46ca3f7",
-                "reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7",
+                "url": "https://api.github.com/repos/phpstan/phpstan/zipball/89d10839dbfc95eeb7da656578b4a899ad2b59b1",
+                "reference": "89d10839dbfc95eeb7da656578b4a899ad2b59b1",
                 "shasum": ""
             },
             "require": {
@@ -6509,7 +6509,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "0.12-dev"
+                    "dev-master": "1.4-dev"
                 }
             },
             "autoload": {
@@ -6524,7 +6524,7 @@
             "description": "PHPStan - PHP Static Analysis Tool",
             "support": {
                 "issues": "https://github.com/phpstan/phpstan/issues",
-                "source": "https://github.com/phpstan/phpstan/tree/0.12.99"
+                "source": "https://github.com/phpstan/phpstan/tree/1.4.3"
             },
             "funding": [
                 {
@@ -6544,7 +6544,7 @@
                     "type": "tidelift"
                 }
             ],
-            "time": "2021-09-12T20:09:55+00:00"
+            "time": "2022-01-28T16:27:17+00:00"
         },
         {
             "name": "phpunit/php-code-coverage",
diff --git a/phpstan.neon b/phpstan.neon
deleted file mode 100644
index c1615fcfec24..000000000000
--- a/phpstan.neon
+++ /dev/null
@@ -1,227 +0,0 @@
-includes:
-    - vendor/friendsoftypo3/phpstan-typo3/extension.neon
-    - Build/phpstan.level8.neon
-    - Build/phpstan.php8config.php
-# Include bleeding edge rules if necessary but do not commit
-#    - vendor/phpstan/phpstan/conf/bleedingEdge.neon
-
-parameters:
-  # Use local .cache dir instead of /tmp
-  tmpDir: .cache/phpstan
-
-  parallel:
-    # Don't be overly greedy on machines with more CPU's to be a good neighbor especially on CI
-    maximumNumberOfProcesses: 5
-
-  level: 2
-
-  # level 2 parameters which are set to opposite values in the original level 2 configuration. Parameters need to be
-  # set to their opposite values and the resulting errors need to be fixed. Once they are fixed, the parameters can be
-  # removed from this file.
-  checkThisOnly: true
-  checkPhpDocMissingReturn: false
-  reportUnmatchedIgnoredErrors: true
-
-  scanDirectories:
-    - typo3/sysext/
-  paths:
-    - typo3/sysext/
-
-  earlyTerminatingMethodCalls:
-      TYPO3\CMS\Core\Resource\InaccessibleFolder:
-        - throwInaccessibleException
-
-  excludes_analyse:
-    - typo3/sysext/*/Tests/*
-    - typo3/sysext/*/Documentation/*
-    - typo3/sysext/*/Resources/*
-    - typo3/sysext/*/Configuration/*
-    - typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
-
-  ignoreErrors:
-    -
-      message: "#^Call to static method isPlatformPackage\\(\\) on an unknown class Composer\\\\Repository\\\\PlatformRepository\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
-    -
-      message: "#^Instantiated class Composer\\\\Util\\\\Filesystem not found\\.$#"
-      count: 4
-      path: typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
-    -
-      message: "#^Parameter \\$rootPackage of method TYPO3\\\\CMS\\\\Core\\\\Composer\\\\PackageArtifactBuilder\\:\\:handleRootPackage\\(\\) has invalid typehint type Composer\\\\Package\\\\PackageInterface\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
-    -
-      message: "#^Parameter \\$filesystem of method TYPO3\\\\CMS\\\\Core\\\\Package\\\\Cache\\\\ComposerPackageArtifact\\:\\:__construct\\(\\) has invalid typehint type Composer\\\\Util\\\\Filesystem\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Package/Cache/ComposerPackageArtifact.php
-    -
-      message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Package\\\\Cache\\\\ComposerPackageArtifact\\:\\:\\$filesystem has unknown class Composer\\\\Util\\\\Filesystem as its type\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Package/Cache/ComposerPackageArtifact.php
-    -
-      message: "#^Parameter \\$filesystem of method TYPO3\\\\CMS\\\\Core\\\\Package\\\\Package\\:\\:makePathRelative\\(\\) has invalid typehint type Composer\\\\Util\\\\Filesystem\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Package/Package.php
-    -
-      message: "#^PHPDoc tag @var for variable \\$composerPackage contains unknown class Composer\\\\Package\\\\PackageInterface\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Composer/PackageArtifactBuilder.php
-
-    # ignored errors for level 0
-    - '#Variable \$_EXTKEY might not be defined\.#'
-    -
-      message: '#Instantiated class Composer\\Util\\Filesystem not found\.#'
-      path: typo3/sysext/core/Classes/Composer/CliEntryPoint.php
-    -
-      message: '#Parameter \$event of method [\w\\]+::\w+\(\) has invalid typehint type Composer\\Script\\Event\.#'
-      path: typo3/sysext/*/Classes/Composer/*
-    -
-      message: "#^Access to undefined constant static\\(TYPO3\\\\CMS\\\\Core\\\\Type\\\\Enumeration\\)\\:\\:__default\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Type/Enumeration.php
-    -
-      message: "#^Unsafe usage of new static\\(\\)\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Collection/AbstractRecordCollection.php
-    -
-      message: "#^Unsafe usage of new static\\(\\)\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Type/Enumeration.php
-    -
-      message: "#^Unsafe usage of new static\\(\\)\\.$#"
-      count: 1
-      path: typo3/sysext/workspaces/Classes/Domain/Record/WorkspaceRecord.php
-
-    # ignored errors for level 1
-    -
-      message: "#^Variable \\$value in isset\\(\\) always exists and is not nullable\\.$#"
-      count: 1
-      path: typo3/sysext/backend/Classes/Utility/BackendUtility.php
-    -
-      message: "#^Variable \\$pidConf in isset\\(\\) always exists and is not nullable\\.$#"
-      count: 1
-      path: typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
-    -
-      message: "#^Constructor of class TYPO3\\\\CMS\\\\Frontend\\\\Plugin\\\\AbstractPlugin has an unused parameter \\$_\\.$#"
-      count: 1
-      path: typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
-    -
-      message: "#^Constructor of class TYPO3\\\\CMS\\\\RteCKEditor\\\\Form\\\\Resolver\\\\RichTextNodeResolver has an unused parameter \\$nodeFactory\\.$#"
-      count: 1
-      path: typo3/sysext/rte_ckeditor/Classes/Form/Resolver/RichTextNodeResolver.php
-
-    # Ignored errors for level 3
-    -
-      message: "#^Property TYPO3\\\\CMS\\\\Belog\\\\Domain\\\\Model\\\\LogEntry\\:\\:\\$newId \\(string\\) does not accept default value of type int\\.$#"
-      count: 1
-      path: typo3/sysext/belog/Classes/Domain/Model/LogEntry.php
-
-    # checkPhpDocMethodSignatures
-    -
-      message: "#^Return type \\(TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\Expression\\\\ExpressionBuilder\\) of method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Connection\\:\\:getExpressionBuilder\\(\\) should be compatible with return type \\(Doctrine\\\\DBAL\\\\Query\\\\Expression\\\\ExpressionBuilder\\) of method Doctrine\\\\DBAL\\\\Connection\\:\\:getExpressionBuilder\\(\\)$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Database/Connection.php
-    -
-      message: "#^Return type \\(TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\QueryBuilder\\) of method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Connection\\:\\:createQueryBuilder\\(\\) should be compatible with return type \\(Doctrine\\\\DBAL\\\\Query\\\\QueryBuilder\\) of method Doctrine\\\\DBAL\\\\Connection\\:\\:createQueryBuilder\\(\\)$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Database/Connection.php
-
-    # TypesAssignedToPropertiesRule
-    -
-      message: "#^Property Doctrine\\\\DBAL\\\\Schema\\\\SchemaDiff\\:\\:\\$newTables \\(array\\<Doctrine\\\\DBAL\\\\Schema\\\\Table\\>\\) does not accept array\\<Doctrine\\\\DBAL\\\\Schema\\\\TableDiff\\>\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Database/Schema/ConnectionMigrator.php
-    -
-      message: "#^Property Doctrine\\\\DBAL\\\\Schema\\\\SchemaDiff\\:\\:\\$removedTables \\(array\\<Doctrine\\\\DBAL\\\\Schema\\\\Table\\>\\) does not accept array\\<Doctrine\\\\DBAL\\\\Schema\\\\TableDiff\\>\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Database/Schema/ConnectionMigrator.php
-
-    # Ignored errors for level 4
-    -
-      message: "#^Ternary operator condition is always true\\.$#"
-      count: 2
-      path: typo3/sysext/backend/Classes/Form/Element/SelectSingleElement.php
-    -
-      message: "#^Instanceof between TYPO3\\\\CMS\\\\Extbase\\\\Domain\\\\Model\\\\Category\\|null and TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\LazyLoadingProxy will always evaluate to false\\.$#"
-      count: 1
-      path: typo3/sysext/extbase/Classes/Domain/Model/Category.php
-    -
-      message: "#^Instanceof between TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File and TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileReference will always evaluate to false\\.$#"
-      count: 1
-      path: typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
-
-    # Ignored errors for level 5
-    -
-      message: "#^Parameter \\#2 \\$id of method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\DataHandler\\:\\:getRecordProperties\\(\\) expects int, int\\|string given\\.$#"
-      count: 2
-      path: typo3/sysext/core/Classes/DataHandling/DataHandler.php
-    -
-      message: "#^Parameter \\#5 \\$id of method TYPO3\\\\CMS\\\\Core\\\\DataHandling\\\\DataHandler\\:\\:checkValue_SW\\(\\) expects int, int\\|string given\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/DataHandling/DataHandler.php
-    -
-      message: "#^Parameter \\#1 \\$stageRecord of method TYPO3\\\\CMS\\\\Workspaces\\\\Controller\\\\Remote\\\\ActionHandler\\:\\:getRecipientsOfStage\\(\\) expects int\\|TYPO3\\\\CMS\\\\Workspaces\\\\Domain\\\\Record\\\\StageRecord, TYPO3\\\\CMS\\\\Workspaces\\\\Domain\\\\Record\\\\StageRecord\\|null given\\.$#"
-      count: 1
-      path: typo3/sysext/workspaces/Classes/Controller/Remote/ActionHandler.php
-    -
-      message: "#^Parameter \\#4 \\$(col|color) of function imagefill expects int, int\\|false given\\.$#"
-      count: 1
-      path: typo3/sysext/frontend/Classes/Imaging/GifBuilder.php
-    -
-      message: "#^Parameter \\#6 \\$(col|color) of function imagefilledrectangle expects int, int\\|false given\\.$#"
-      count: 1
-      path: typo3/sysext/frontend/Classes/Imaging/GifBuilder.php
-    -
-      message: "#^Parameter \\#1 \\$node of function dom_import_simplexml expects SimpleXMLElement, SimpleXMLElement\\|false given\\.$#"
-      count: 1
-      path: typo3/sysext/frontend/Classes/ContentObject/ScalableVectorGraphicsContentObject.php
-    -
-      message: "#^Parameter \\#1 \\$currentRequest of static method TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\Dispatcher\\:\\:buildRequestFromCurrentRequestAndForwardResponse\\(\\) expects TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\Request, TYPO3\\\\CMS\\\\Extbase\\\\Mvc\\\\RequestInterface given\\.$#"
-      count: 1
-      path: typo3/sysext/extbase/Classes/Mvc/Dispatcher.php
-    -
-      message: "#^Parameter \\#1 \\$node of method TYPO3\\\\CMS\\\\Core\\\\Tree\\\\TableConfiguration\\\\ArrayTreeRenderer\\:\\:renderNode\\(\\) expects TYPO3\\\\CMS\\\\Backend\\\\Tree\\\\TreeRepresentationNode, TYPO3\\\\CMS\\\\Backend\\\\Tree\\\\TreeNode given\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Tree/TableConfiguration/ArrayTreeRenderer.php
-    -
-      message: "#^Parameter \\#2 \\$folder of method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceStorage\\:\\:checkFolderActionPermission\\(\\) expects TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Folder\\|null, TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface given\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Resource/ResourceStorage.php
-    -
-      message: "#^Parameter \\#1 \\$file of class TYPO3\\\\CMS\\\\Core\\\\Resource\\\\Event\\\\AfterFileAddedEvent constructor expects TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface, TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ProcessedFile\\|null given\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Resource/ResourceStorage.php
-    -
-      message: "#^Parameter \\#1 \\$file of method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ResourceStorage\\:\\:replaceFile\\(\\) expects TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FileInterface, TYPO3\\\\CMS\\\\Core\\\\Resource\\\\File\\|TYPO3\\\\CMS\\\\Core\\\\Resource\\\\ProcessedFile\\|null given\\.$#"
-      count: 2
-      path: typo3/sysext/core/Classes/Resource/ResourceStorage.php
-    -
-      message: "#^Parameter \\#2 \\$package of method TYPO3\\\\CMS\\\\Core\\\\DependencyInjection\\\\ServiceProviderRegistry\\:\\:create\\(\\) expects TYPO3\\\\CMS\\\\Core\\\\Package\\\\Package\\|null, TYPO3\\\\CMS\\\\Core\\\\Package\\\\PackageInterface given\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/DependencyInjection/ServiceProviderRegistry.php
-    -
-      message: "#^Parameter \\#1 \\$(name|function) of class ReflectionFunction constructor expects Closure\\|string, callable\\(\\)\\: mixed given\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/DependencyInjection/ServiceProviderCompilationPass.php
-    -
-      message: "#^Parameter \\#1 \\$manifest of method TYPO3\\\\CMS\\\\Core\\\\Core\\\\ClassLoadingInformationGenerator\\:\\:getAutoloadSectionFromManifest\\(\\) expects stdClass, object given\\.$#"
-      count: 2
-      path: typo3/sysext/core/Classes/Core/ClassLoadingInformationGenerator.php
-    -
-      message: "#^Parameter \\#2 \\$callback of function array_walk expects callable\\(\\)\\: mixed, array\\(\\$this\\(TYPO3\\\\CMS\\\\Core\\\\Cache\\\\Backend\\\\AbstractBackend\\), 'flushByTag'\\) given\\.$#"
-      count: 1
-      path: typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php
-    -
-      message: "#^Parameter \\#1 \\$node of method TYPO3\\\\CMS\\\\Backend\\\\Tree\\\\Renderer\\\\UnorderedListTreeRenderer\\:\\:renderNode\\(\\) expects TYPO3\\\\CMS\\\\Backend\\\\Tree\\\\TreeRepresentationNode, TYPO3\\\\CMS\\\\Backend\\\\Tree\\\\TreeNode given\\.$#"
-      count: 1
-      path: typo3/sysext/backend/Classes/Tree/Renderer/UnorderedListTreeRenderer.php
-    -
-      # Obsolete in v12, when either entire Request or __construct() are declared final
-      message: "#^Unsafe usage of new static\\(\\)\\.$#"
-      count: 14
-      path: typo3/sysext/extbase/Classes/Mvc/Request.php
-    -
-      message: "#^Cannot unset offset 'parameter\\.' on array\\('parameter' => mixed\\).$#"
-      count: 1
-      path: typo3/sysext/frontend/Classes/Typolink/PageLinkBuilder.php
diff --git a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_datahandler/Classes/Tca/SelectElementItems.php b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_datahandler/Classes/Tca/SelectElementItems.php
index f1144454ccc4..dea5c03bae60 100644
--- a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_datahandler/Classes/Tca/SelectElementItems.php
+++ b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_datahandler/Classes/Tca/SelectElementItems.php
@@ -22,11 +22,9 @@ namespace TYPO3\TestDatahandler\Classes\Tca;
  */
 class SelectElementItems
 {
-    /**
-     * @return array
-     */
     public function getItems($params): ?array
     {
         $params['items'][] = ['processed label', 'processed value'];
+        return null;
     }
 }
diff --git a/typo3/sysext/core/Tests/Unit/Database/Mocks/MockPlatform.php b/typo3/sysext/core/Tests/Unit/Database/Mocks/MockPlatform.php
index 6dc00f827020..543f7cd42326 100644
--- a/typo3/sysext/core/Tests/Unit/Database/Mocks/MockPlatform.php
+++ b/typo3/sysext/core/Tests/Unit/Database/Mocks/MockPlatform.php
@@ -36,57 +36,42 @@ class MockPlatform extends AbstractPlatform
 
     /**
      * Returns the SQL snippet that declares a boolean column.
-     *
-     * @param array $columnDef
-     *
-     * @return string
      */
     public function getBooleanTypeDeclarationSQL(array $columnDef): ?string
     {
+        return null;
     }
 
     /**
      * Returns the SQL snippet that declares a 4 byte integer column.
-     *
-     * @param array $columnDef
-     *
-     * @return string
      */
     public function getIntegerTypeDeclarationSQL(array $columnDef): ?string
     {
+        return null;
     }
 
     /**
      * Returns the SQL snippet that declares an 8 byte integer column.
-     *
-     * @param array $columnDef
-     *
-     * @return string
      */
     public function getBigIntTypeDeclarationSQL(array $columnDef): ?string
     {
+        return null;
     }
 
     /**
      * Returns the SQL snippet that declares a 2 byte integer column.
-     *
-     * @param array $columnDef
-     *
-     * @return string
      */
     public function getSmallIntTypeDeclarationSQL(array $columnDef): ?string
     {
+        return null;
     }
 
     /**
      * Returns the SQL snippet that declares common properties of an integer column.
-     *
-     * @param array $columnDef
-     *
-     * @return string
      */
     public function _getCommonIntegerTypeDeclarationSQL(array $columnDef): ?string
     {
+        return null;
     }
 
     /**
diff --git a/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php b/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php
index 065398b0f426..3c07c63da3c4 100644
--- a/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php
+++ b/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php
@@ -42,7 +42,8 @@ class FakeValidSpoolFixture implements DelayedTransportInterface
 
     public function send(RawMessage $message, Envelope $envelope = null): ?SentMessage
     {
-        // dont do anything
+        // Don't do anything
+        return null;
     }
 
     public function flushQueue(TransportInterface $transport): int
diff --git a/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php b/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php
index ecdcacb512ea..f3dc39d1a267 100644
--- a/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php
+++ b/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php
@@ -291,6 +291,7 @@ class ClassSchemaTest extends UnitTestCase
             }
             public function foo($copy): self
             {
+                return $this;
             }
             public function bar(self $copy): void
             {
diff --git a/typo3/sysext/install/Classes/Updates/PrerequisiteCollection.php b/typo3/sysext/install/Classes/Updates/PrerequisiteCollection.php
index 8e25c4924172..9aed345d5987 100644
--- a/typo3/sysext/install/Classes/Updates/PrerequisiteCollection.php
+++ b/typo3/sysext/install/Classes/Updates/PrerequisiteCollection.php
@@ -46,10 +46,7 @@ class PrerequisiteCollection implements \IteratorAggregate
         }
     }
 
-    /**
-     * @return \ArrayObject|\Traversable|PrerequisiteInterface[]
-     */
-    public function getIterator()
+    public function getIterator(): \Traversable
     {
         return $this->prerequisites;
     }
-- 
GitLab