From 569fad3626d353572c5cdd31fe9deeaa0eee1576 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 1 Jun 2022 15:26:47 +0200 Subject: [PATCH] [CLEANUP] Remove type annotations for fields from the testing framework (#453) As in these cases the type annotations from the base class are used, we can avoid PHPStan warnings about discrepancies between our annotations and the annotations from the testing framework for the corresponding fields in the superclass. --- .../Functional/Domain/Repository/Product/TeaRepositoryTest.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php b/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php index e20c224..c4b1aa3 100644 --- a/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php +++ b/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php @@ -19,9 +19,6 @@ use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase; */ class TeaRepositoryTest extends FunctionalTestCase { - /** - * @var array - */ protected $testExtensionsToLoad = ['typo3conf/ext/tea']; /**