diff --git a/typo3/sysext/backend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php b/typo3/sysext/backend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php index b51aa99d774e4b9aba7d4b93431e1ea4984db3a9..6b80f5b04f3554395c0e92ffbf4e984693e4a615 100644 --- a/typo3/sysext/backend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php +++ b/typo3/sysext/backend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php @@ -433,7 +433,7 @@ class ConditionMatcherTest extends FunctionalTestCase * @param int|null $pageId * @return ConditionMatcher */ - protected function getConditionMatcher(int $pageId = null): ConditionMatcher + protected function getConditionMatcher(?int $pageId = null): ConditionMatcher { $conditionMatcher = new ConditionMatcher(null, $pageId); $conditionMatcher->setLogger($this->prophesize(Logger::class)->reveal()); diff --git a/typo3/sysext/backend/Tests/Unit/Controller/File/ThumbnailControllerTest.php b/typo3/sysext/backend/Tests/Unit/Controller/File/ThumbnailControllerTest.php index ebbc51c44efb6c5dca2bca7a8be1d2e970f5d948..578a865f1eb562933dc777b1a108ddb1c9ce847c 100644 --- a/typo3/sysext/backend/Tests/Unit/Controller/File/ThumbnailControllerTest.php +++ b/typo3/sysext/backend/Tests/Unit/Controller/File/ThumbnailControllerTest.php @@ -62,7 +62,7 @@ class ThumbnailControllerTest extends UnitTestCase * @test * @dataProvider exceptionIsThrownOnInvalidHMACDataProvider */ - public function exceptionIsThrownOnInvalidHMAC(string $hmac = null): void + public function exceptionIsThrownOnInvalidHMAC(?string $hmac = null): void { $this->expectException(\InvalidArgumentException::class); $this->expectExceptionCode(1534484203); @@ -95,7 +95,7 @@ class ThumbnailControllerTest extends UnitTestCase * @test * @dataProvider generateThumbnailIsInvokedDataProvider */ - public function generateThumbnailIsInvoked(array $parameters = null): void + public function generateThumbnailIsInvoked(?array $parameters = null): void { $this->subject->expects(self::once()) ->method('generateThumbnail') diff --git a/typo3/sysext/core/Tests/Acceptance/Support/Helper/Config.php b/typo3/sysext/core/Tests/Acceptance/Support/Helper/Config.php index 6fbe69d209344bdd9bcb46c168ec3997ffccbc98..17ce12360305bd2e7d82672c0a0272f0e4731bef 100644 --- a/typo3/sysext/core/Tests/Acceptance/Support/Helper/Config.php +++ b/typo3/sysext/core/Tests/Acceptance/Support/Helper/Config.php @@ -59,7 +59,7 @@ class Config extends Module * @return array|string|null * @throws \Codeception\Exception\ModuleException */ - public function grabConfig(string $parameter = null) + public function grabConfig(?string $parameter = null) { return $this->grab($parameter); } @@ -72,7 +72,7 @@ class Config extends Module * @return array|string|null * @throws \Codeception\Exception\ModuleException */ - public function grabModuleConfig(string $moduleName, string $parameter = null) + public function grabModuleConfig(string $moduleName, ?string $parameter = null) { return $this->grab($parameter, $moduleName); } @@ -85,7 +85,7 @@ class Config extends Module * @return array|string|null * @throws \Codeception\Exception\ModuleException */ - protected function grab(string $parameter = null, string $moduleName = null) + protected function grab(?string $parameter = null, ?string $moduleName = null) { $module = is_string($moduleName) ? $this->getModule($moduleName) : $this; return $module->_getConfig($parameter); diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/AbstractDataHandlerActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/AbstractDataHandlerActionTestCase.php index 22fd8a93cffe09152f4631f775b2edd271f26da3..3114afb3bd7dee5065b10c564006592f17af5bdf 100644 --- a/typo3/sysext/core/Tests/Functional/DataHandling/AbstractDataHandlerActionTestCase.php +++ b/typo3/sysext/core/Tests/Functional/DataHandling/AbstractDataHandlerActionTestCase.php @@ -178,7 +178,7 @@ abstract class AbstractDataHandlerActionTestCase extends FunctionalTestCase * * @param string[]|null $expectedMessages */ - protected function assertErrorLogEntries(array $expectedMessages = null): void + protected function assertErrorLogEntries(?array $expectedMessages = null): void { if ($this->expectedErrorLogEntries === null && $expectedMessages === null) { return; diff --git a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_irre_foreignfield/Classes/Controller/ContentController.php b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_irre_foreignfield/Classes/Controller/ContentController.php index b6d924adcb9c5316c78ff86b9a99c501c80cad64..7858110e96477f1a25094b4f32071824f1bcd549 100644 --- a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_irre_foreignfield/Classes/Controller/ContentController.php +++ b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/test_irre_foreignfield/Classes/Controller/ContentController.php @@ -65,7 +65,7 @@ class ContentController extends AbstractController * @param \TYPO3\TestIrreForeignfield\Domain\Model\Content $newContent * @Extbase\IgnoreValidation("newContent") */ - public function newAction(Content $newContent = null): void + public function newAction(?Content $newContent = null): void { $this->view->assign('newContent', $newContent); } diff --git a/typo3/sysext/core/Tests/Functional/Imaging/ImageMagickFileTest.php b/typo3/sysext/core/Tests/Functional/Imaging/ImageMagickFileTest.php index 4ce9f72fbc6bbc21a6a9ded1d7222f61c69ba673..314786f8335b57dc391ad4ade257485df416fc45 100644 --- a/typo3/sysext/core/Tests/Functional/Imaging/ImageMagickFileTest.php +++ b/typo3/sysext/core/Tests/Functional/Imaging/ImageMagickFileTest.php @@ -267,7 +267,7 @@ class ImageMagickFileTest extends FunctionalTestCase * @test * @dataProvider fileStatementIsDeniedDataProvider */ - public function fileStatementIsDenied(string $fileName, string $mimeType = null): void + public function fileStatementIsDenied(string $fileName, ?string $mimeType = null): void { $this->expectException(Exception::class); $this->expectExceptionCode(1550060977); diff --git a/typo3/sysext/core/Tests/Functional/SiteHandling/SiteBasedTestTrait.php b/typo3/sysext/core/Tests/Functional/SiteHandling/SiteBasedTestTrait.php index d87df5a16368200544e5222633b690d4f364fd44..6261f52aba2b69294cf63af327b8c32fdca04cf5 100644 --- a/typo3/sysext/core/Tests/Functional/SiteHandling/SiteBasedTestTrait.php +++ b/typo3/sysext/core/Tests/Functional/SiteHandling/SiteBasedTestTrait.php @@ -145,7 +145,7 @@ trait SiteBasedTestTrait string $identifier, string $base, array $fallbackIdentifiers = [], - string $fallbackType = null + ?string $fallbackType = null ): array { $preset = $this->resolveLanguagePreset($identifier); diff --git a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ColumnDefinitionAttributesTest.php b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ColumnDefinitionAttributesTest.php index 77ee3a0c6dcc21db11273a9a5f11a8672294c667..976d35011b2de0da3de0400ab5250ff322ae7a96 100644 --- a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ColumnDefinitionAttributesTest.php +++ b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ColumnDefinitionAttributesTest.php @@ -359,9 +359,9 @@ class ColumnDefinitionAttributesTest extends UnitTestCase bool $createIndex, bool $createUniqueIndex, bool $isPrimaryKey, - string $comment = null, - string $columnFormat = null, - string $storage = null + ?string $comment = null, + ?string $columnFormat = null, + ?string $storage = null ): void { $statement = sprintf('CREATE TABLE `aTable`(`aField` INT(11) %s);', $columnAttribute); $subject = $this->createSubject($statement); diff --git a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/DateTimeTypesTest.php b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/DateTimeTypesTest.php index 55160ed05ea6d9c24a0ffadb1b0964870e7b3ab0..e48e8792f636d4aef357d6ce55761bbabeea28e2 100644 --- a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/DateTimeTypesTest.php +++ b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/DateTimeTypesTest.php @@ -88,7 +88,7 @@ class DateTimeTypesTest extends AbstractDataTypeBaseTestCase * @param string $className * @param int $length */ - public function canParseDataType(string $columnDefinition, string $className, int $length = null): void + public function canParseDataType(string $columnDefinition, string $className, ?int $length = null): void { $subject = $this->createSubject($columnDefinition); diff --git a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FixedPointTypesTest.php b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FixedPointTypesTest.php index b47628796faaeb9bb362b66dd80fec89d37dd458..1c13e18efc471585617b46d706fc540d5dc303b4 100644 --- a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FixedPointTypesTest.php +++ b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FixedPointTypesTest.php @@ -84,8 +84,8 @@ class FixedPointTypesTest extends AbstractDataTypeBaseTestCase public function canParseDataType( string $columnDefinition, string $className, - int $precision = null, - int $scale = null + ?int $precision = null, + ?int $scale = null ): void { $subject = $this->createSubject($columnDefinition); diff --git a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FloatingPointTypesTest.php b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FloatingPointTypesTest.php index ac3e9133af0923a252eaa2a70ff56b6f5524b5e2..62dfe085c68ae017d0f2bfa169eed2a4b61c2429 100644 --- a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FloatingPointTypesTest.php +++ b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/DataTypes/FloatingPointTypesTest.php @@ -103,8 +103,8 @@ class FloatingPointTypesTest extends AbstractDataTypeBaseTestCase public function canParseDataType( string $columnDefinition, string $className, - int $precision = null, - int $scale = null + ?int $precision = null, + ?int $scale = null ): void { $subject = $this->createSubject($columnDefinition); diff --git a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ReferenceDefinitionTest.php b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ReferenceDefinitionTest.php index a7c2dca732704968fc1171e58450f342e96a87ca..dfb44a319f2fdc101c0bb75c49ff3cb083692b1c 100644 --- a/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ReferenceDefinitionTest.php +++ b/typo3/sysext/core/Tests/Unit/Database/Schema/Parser/ReferenceDefinitionTest.php @@ -186,9 +186,9 @@ class ReferenceDefinitionTest extends UnitTestCase string $columnAttribute, string $table, array $columns, - string $match = null, - string $onDelete = null, - string $onUpdate = null + ?string $match = null, + ?string $onDelete = null, + ?string $onUpdate = null ): void { $statement = sprintf('CREATE TABLE `aTable`(`aField` INT(11) %s);', $columnAttribute); $subject = $this->createSubject($statement); diff --git a/typo3/sysext/core/Tests/Unit/DependencyInjection/FailsafeContainerTest.php b/typo3/sysext/core/Tests/Unit/DependencyInjection/FailsafeContainerTest.php index e18ce52f15476e3f94b6fc69832a700fe43fa7d6..826d95efd5d82296008df36674c1d12cadca3f63 100644 --- a/typo3/sysext/core/Tests/Unit/DependencyInjection/FailsafeContainerTest.php +++ b/typo3/sysext/core/Tests/Unit/DependencyInjection/FailsafeContainerTest.php @@ -305,7 +305,7 @@ class FailsafeContainerTest extends UnitTestCase public function extendingNonExistingFactory(): void { $this->providerProphecy->getExtensions()->willReturn([ - 'service' => static function (ContainerInterface $c, Service $s = null) { + 'service' => static function (ContainerInterface $c, ?Service $s = null) { if ($s === null) { $s = new Service(); } diff --git a/typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php b/typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php index f1c272477ac781eb889a4aeeeaf21ab64a88fc7b..3a2d9e5adba6325483794015fd654f42a8740785 100644 --- a/typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php +++ b/typo3/sysext/core/Tests/Unit/DependencyInjection/ServiceProviderCompilationPassTest.php @@ -69,7 +69,7 @@ class ServiceProviderCompilationPassTest extends UnitTestCase return $serviceProviderRegistryProphecy->reveal(); } - protected function getContainer(array $serviceProviders, callable $configure = null): ContainerBuilder + protected function getContainer(array $serviceProviders, ?callable $configure = null): ContainerBuilder { static $id = 0; diff --git a/typo3/sysext/core/Tests/Unit/EventDispatcher/ListenerProviderTest.php b/typo3/sysext/core/Tests/Unit/EventDispatcher/ListenerProviderTest.php index 9645751db9b0bd7d10d0ae1312055aff35dd1a0f..b38ee9ad0348d7a877afba7af6ba34b100f81f7a 100644 --- a/typo3/sysext/core/Tests/Unit/EventDispatcher/ListenerProviderTest.php +++ b/typo3/sysext/core/Tests/Unit/EventDispatcher/ListenerProviderTest.php @@ -75,7 +75,7 @@ class ListenerProviderTest extends UnitTestCase * @test * @dataProvider listeners */ - public function dispatchesEvent($listener, string $method = null): void + public function dispatchesEvent($listener, ?string $method = null): void { $event = new \stdClass(); $event->invoked = 0; @@ -94,7 +94,7 @@ class ListenerProviderTest extends UnitTestCase * @test * @dataProvider listeners */ - public function associatesToEventParentClass($listener, string $method = null): void + public function associatesToEventParentClass($listener, ?string $method = null): void { $extendedEvent = new class () extends \stdClass { public $invoked = 0; @@ -113,7 +113,7 @@ class ListenerProviderTest extends UnitTestCase * @test * @dataProvider listeners */ - public function associatesToImplementedInterfaces($listener, string $method = null): void + public function associatesToImplementedInterfaces($listener, ?string $method = null): void { $eventImplementation = new class () implements \IteratorAggregate { public $invoked = 0; diff --git a/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php b/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php index 3c07c63da3c424c09d6648c31b153287061c7824..3d76fa8767a162ccf3576fce03d992ad11ca5120 100644 --- a/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php +++ b/typo3/sysext/core/Tests/Unit/Mail/Fixtures/FakeValidSpoolFixture.php @@ -40,7 +40,7 @@ class FakeValidSpoolFixture implements DelayedTransportInterface return $this->settings; } - public function send(RawMessage $message, Envelope $envelope = null): ?SentMessage + public function send(RawMessage $message, ?Envelope $envelope = null): ?SentMessage { // Don't do anything return null; diff --git a/typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php b/typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php index 87d786a8ce554bbeca1637d63fbe4a6ae30ff173..64ca2895c97928187f21f2450147882b79ddc83e 100644 --- a/typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php +++ b/typo3/sysext/core/Tests/Unit/Resource/ResourceStorageTest.php @@ -94,8 +94,8 @@ class ResourceStorageTest extends BaseTestCase protected function prepareSubject( array $configuration, bool $mockPermissionChecks = false, - AbstractDriver $driverObject = null, - ResourceFactory $resourceFactory = null, + ?AbstractDriver $driverObject = null, + ?ResourceFactory $resourceFactory = null, array $storageRecord = [], array $mockedMethods = [] ): void { @@ -162,7 +162,7 @@ class ResourceStorageTest extends BaseTestCase */ protected function createDriverMock( array $driverConfiguration, - ResourceStorage $storageObject = null, + ?ResourceStorage $storageObject = null, array $mockedDriverMethods = [] ) { $this->initializeVfs(); diff --git a/typo3/sysext/core/Tests/Unit/Utility/AccessibleProxies/ExtensionManagementUtilityAccessibleProxy.php b/typo3/sysext/core/Tests/Unit/Utility/AccessibleProxies/ExtensionManagementUtilityAccessibleProxy.php index 0d8d6b3ec41690123652cb9a006a963bc158069f..3b4dd73ceb19c547363db9265552256bb161b259 100644 --- a/typo3/sysext/core/Tests/Unit/Utility/AccessibleProxies/ExtensionManagementUtilityAccessibleProxy.php +++ b/typo3/sysext/core/Tests/Unit/Utility/AccessibleProxies/ExtensionManagementUtilityAccessibleProxy.php @@ -27,7 +27,7 @@ use TYPO3\CMS\Core\Utility\ExtensionManagementUtility; */ class ExtensionManagementUtilityAccessibleProxy extends ExtensionManagementUtility { - public static function setCacheManager(CacheManager $cacheManager = null): void + public static function setCacheManager(?CacheManager $cacheManager = null): void { static::$cacheManager = $cacheManager; } diff --git a/typo3/sysext/core/Tests/Unit/Utility/IpAnonymizationUtilityTest.php b/typo3/sysext/core/Tests/Unit/Utility/IpAnonymizationUtilityTest.php index c21cb38450ee6dd2e5fbd7c62d989ae8966cdb9e..7a2e02c5f9ebdd110e5d09eaf795ed141aebf568 100644 --- a/typo3/sysext/core/Tests/Unit/Utility/IpAnonymizationUtilityTest.php +++ b/typo3/sysext/core/Tests/Unit/Utility/IpAnonymizationUtilityTest.php @@ -56,7 +56,7 @@ class IpAnonymizationUtilityTest extends UnitTestCase * @param int|null $mask * @param string $expected */ - public function anonymizeIpReturnsCorrectValue(string $address, int $mask = null, string $expected): void + public function anonymizeIpReturnsCorrectValue(string $address, ?int $mask, string $expected): void { // set the default if $mask is null $GLOBALS['TYPO3_CONF_VARS']['SYS']['ipAnonymization'] = 1; diff --git a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/BlogController.php b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/BlogController.php index f6a7a9ec750bd86c13652c806ac7892c7747ba73..647bcc4762c81fbbf96e0ae44bc3044913435a18 100644 --- a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/BlogController.php +++ b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Controller/BlogController.php @@ -66,7 +66,7 @@ class BlogController extends ActionController return $this->htmlResponse(); } - public function detailsAction(Blog $blog = null): ResponseInterface + public function detailsAction(?Blog $blog = null): ResponseInterface { return $this->htmlResponse($blog ? $blog->getTitle() : ''); } diff --git a/typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerArgumentTest.php b/typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerArgumentTest.php index 7e5e6ecb7e498ed28e5a4534c8c5a965957af375..f4337f71b4b1a8795bf4be1f19c74826e8099de6 100644 --- a/typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerArgumentTest.php +++ b/typo3/sysext/extbase/Tests/Functional/Mvc/Controller/ActionControllerArgumentTest.php @@ -207,7 +207,7 @@ class ActionControllerArgumentTest extends FunctionalTestCase return $document; } - private function buildRequest(string $actionName, array $arguments = null): Request + private function buildRequest(string $actionName, ?array $arguments = null): Request { $request = new Request(); $request->setPluginName($this->pluginName); diff --git a/typo3/sysext/extbase/Tests/Functional/Property/PropertyMapperTest.php b/typo3/sysext/extbase/Tests/Functional/Property/PropertyMapperTest.php index ec8345e00b89e89293c4e653fbf1598ca81bb768..1b1d6dbb3e8b4b50d2044d5e33b16f6cd9ce7da3 100644 --- a/typo3/sysext/extbase/Tests/Functional/Property/PropertyMapperTest.php +++ b/typo3/sysext/extbase/Tests/Functional/Property/PropertyMapperTest.php @@ -145,7 +145,7 @@ class PropertyMapperTest extends FunctionalTestCase protected $sourceTypes = ['integer']; protected $targetType = \Countable::class; - public function convertFrom($source, string $targetType, array $convertedChildProperties = [], PropertyMappingConfigurationInterface $configuration = null): bool + public function convertFrom($source, string $targetType, array $convertedChildProperties = [], ?PropertyMappingConfigurationInterface $configuration = null): bool { return true; } @@ -156,7 +156,7 @@ class PropertyMapperTest extends FunctionalTestCase protected $sourceTypes = ['integer']; protected $targetType = ExtendedCountableInterface::class; - public function convertFrom($source, string $targetType, array $convertedChildProperties = [], PropertyMappingConfigurationInterface $configuration = null): bool + public function convertFrom($source, string $targetType, array $convertedChildProperties = [], ?PropertyMappingConfigurationInterface $configuration = null): bool { return true; } @@ -199,7 +199,7 @@ class PropertyMapperTest extends FunctionalTestCase public function findTypeConverterReturnsTheConverterFromThePropertyMappingConfiguration(): void { $class = new class () extends IntegerConverter { - public function convertFrom($source, string $targetType, array $convertedChildProperties = [], PropertyMappingConfigurationInterface $configuration = null): int + public function convertFrom($source, string $targetType, array $convertedChildProperties = [], ?PropertyMappingConfigurationInterface $configuration = null): int { return 1575648246; } @@ -259,7 +259,7 @@ class PropertyMapperTest extends FunctionalTestCase protected $sourceTypes = ['string']; protected $targetType = Cat::class; - public function convertFrom($source, string $targetType, array $convertedChildProperties = [], PropertyMappingConfigurationInterface $configuration = null): Cat + public function convertFrom($source, string $targetType, array $convertedChildProperties = [], ?PropertyMappingConfigurationInterface $configuration = null): Cat { return new Cat(); } @@ -282,7 +282,7 @@ class PropertyMapperTest extends FunctionalTestCase protected $sourceTypes = ['string']; protected $targetType = Animal::class; - public function convertFrom($source, string $targetType, array $convertedChildProperties = [], PropertyMappingConfigurationInterface $configuration = null): Animal + public function convertFrom($source, string $targetType, array $convertedChildProperties = [], ?PropertyMappingConfigurationInterface $configuration = null): Animal { return new Animal(); } @@ -305,7 +305,7 @@ class PropertyMapperTest extends FunctionalTestCase protected $sourceTypes = ['integer']; protected $targetType = \Countable::class; - public function convertFrom($source, string $targetType, array $convertedChildProperties = [], PropertyMappingConfigurationInterface $configuration = null): array + public function convertFrom($source, string $targetType, array $convertedChildProperties = [], ?PropertyMappingConfigurationInterface $configuration = null): array { return []; } diff --git a/typo3/sysext/extbase/Tests/Unit/Object/Container/Fixtures/ContainerConstructorInjectionTestFixtures.php b/typo3/sysext/extbase/Tests/Unit/Object/Container/Fixtures/ContainerConstructorInjectionTestFixtures.php index f7844e8075adba44858bdbebe16bc832e5ee9267..4cf0f1f5828d5278d39974ba21b80f81f02d3a80 100644 --- a/typo3/sysext/extbase/Tests/Unit/Object/Container/Fixtures/ContainerConstructorInjectionTestFixtures.php +++ b/typo3/sysext/extbase/Tests/Unit/Object/Container/Fixtures/ContainerConstructorInjectionTestFixtures.php @@ -54,7 +54,7 @@ class OptionalConstructorArgument /** * @param ArgumentTestClass|null $argumentTestClass */ - public function __construct(ArgumentTestClass $argumentTestClass = null) + public function __construct(?ArgumentTestClass $argumentTestClass = null) { $this->argumentTestClass = $argumentTestClass; } @@ -85,7 +85,7 @@ class TwoConstructorArgumentsSecondOptional * @param ArgumentTestClass $argumentTestClass * @param ArgumentTestClass|null $argumentTestClassTwo */ - public function __construct(ArgumentTestClass $argumentTestClass, ArgumentTestClass $argumentTestClassTwo = null) + public function __construct(ArgumentTestClass $argumentTestClass, ?ArgumentTestClass $argumentTestClassTwo = null) { $this->argumentTestClass = $argumentTestClass; $this->argumentTestClassTwo = $argumentTestClassTwo; @@ -109,7 +109,7 @@ class TwoConstructorArgumentsFirstOptional * @param ArgumentTestClass|null $argumentTestClass * @param ArgumentTestClass $argumentTestClassTwo */ - public function __construct(ArgumentTestClass $argumentTestClass = null, ArgumentTestClass $argumentTestClassTwo) + public function __construct(?ArgumentTestClass $argumentTestClass, ArgumentTestClass $argumentTestClassTwo) { $this->argumentTestClass = $argumentTestClass; $this->argumentTestClassTwo = $argumentTestClassTwo; @@ -125,7 +125,7 @@ class TwoConstructorArgumentsBothOptional * @param ArgumentTestClass|null $argumentTestClass * @param ArgumentTestClass|null $argumentTestClassTwo */ - public function __construct(ArgumentTestClass $argumentTestClass = null, ArgumentTestClass $argumentTestClassTwo = null) + public function __construct(?ArgumentTestClass $argumentTestClass = null, ?ArgumentTestClass $argumentTestClassTwo = null) { $this->argumentTestClass = $argumentTestClass; $this->argumentTestClassTwo = $argumentTestClassTwo; diff --git a/typo3/sysext/extbase/Tests/Unit/Property/TypeConverter/Fixtures/DateTimeSubFixture.php b/typo3/sysext/extbase/Tests/Unit/Property/TypeConverter/Fixtures/DateTimeSubFixture.php index be801d63cdd95a2ee8ea05b5ba7adf147226cd1c..73a58838829ec69b0c11e448149b9164192635ff 100644 --- a/typo3/sysext/extbase/Tests/Unit/Property/TypeConverter/Fixtures/DateTimeSubFixture.php +++ b/typo3/sysext/extbase/Tests/Unit/Property/TypeConverter/Fixtures/DateTimeSubFixture.php @@ -28,7 +28,7 @@ class DateTimeSubFixture extends \DateTime * @param \DateTimeZone|null $timezone * @return DateTimeSubFixture */ - public static function createFromFormat($format, $time, \DateTimeZone $timezone = null): DateTimeSubFixture + public static function createFromFormat($format, $time, ?\DateTimeZone $timezone = null): DateTimeSubFixture { return new self(); } diff --git a/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php b/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php index cf0d8a6770377ee2386964999fda78fdc623825b..26942406d48f40bb4a8f940b97bbdf868954f564 100644 --- a/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php +++ b/typo3/sysext/extbase/Tests/Unit/Reflection/ClassSchemaTest.php @@ -276,7 +276,7 @@ class ClassSchemaTest extends UnitTestCase public function classSchemaCanHandleSelfMethodReturnTypes(): void { $class = new class () { - public function __construct(self $copy = null) {} + public function __construct(?self $copy = null) {} public function injectCopy(self $copy): void {} public function foo($copy): self { diff --git a/typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php b/typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php index 17116fe0fc5b6d1b9b35de636910512c6d5324ab..e02f84c985c4779530b0f2bc581a9a6dd0416e84 100644 --- a/typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php +++ b/typo3/sysext/extbase/Tests/Unit/Utility/LocalizationUtilityTest.php @@ -327,7 +327,7 @@ class LocalizationUtilityTest extends UnitTestCase * @dataProvider translateDataProvider * @test */ - public function translateTestWithBackendUserLanguage($key, $languageKey, $expected, array $altLanguageKeys = [], array $arguments = null): void + public function translateTestWithBackendUserLanguage($key, $languageKey, $expected, array $altLanguageKeys = [], ?array $arguments = null): void { $this->configurationManagerInterfaceProphecy ->getConfiguration('Framework', 'core', null) @@ -359,7 +359,7 @@ class LocalizationUtilityTest extends UnitTestCase * @dataProvider translateDataProvider * @test */ - public function translateTestWithExplicitLanguageParameters($key, $languageKey, $expected, array $altLanguageKeys = [], array $arguments = null): void + public function translateTestWithExplicitLanguageParameters($key, $languageKey, $expected, array $altLanguageKeys = [], ?array $arguments = null): void { $packageManagerProphecy = $this->prophesize(PackageManager::class); $this->configurationManagerInterfaceProphecy diff --git a/typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php b/typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php index f8efe2ae861f2e9beeb6ad6980d4e4f0559c1cd4..49784181417f75cf611cf36872ff568995e0bca6 100644 --- a/typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php +++ b/typo3/sysext/frontend/Tests/Functional/SiteHandling/AbstractTestCase.php @@ -100,7 +100,7 @@ abstract class AbstractTestCase extends FunctionalTestCase * @param callable|null $callback * @return array */ - protected function keysFromTemplate(array $array, string $template, callable $callback = null): array + protected function keysFromTemplate(array $array, string $template, ?callable $callback = null): array { $keys = array_unique( array_map( diff --git a/typo3/sysext/frontend/Tests/Functional/SiteHandling/EnhancerSiteRequest/RouteTest.php b/typo3/sysext/frontend/Tests/Functional/SiteHandling/EnhancerSiteRequest/RouteTest.php index cb2551a6112c214c73f0b6048c5e8da040566819..355e04f27ba72fd181d9b2741a8bcd295dc8f189 100644 --- a/typo3/sysext/frontend/Tests/Functional/SiteHandling/EnhancerSiteRequest/RouteTest.php +++ b/typo3/sysext/frontend/Tests/Functional/SiteHandling/EnhancerSiteRequest/RouteTest.php @@ -465,7 +465,7 @@ class RouteTest extends AbstractEnhancerSiteRequestTest * @test * @dataProvider routeIdentifiersAreResolvedDataProvider */ - public function routeIdentifiersAreResolved(string $namespace, string $argumentName, string $queryPath, string $failureReason = null): void + public function routeIdentifiersAreResolved(string $namespace, string $argumentName, string $queryPath, ?string $failureReason = null): void { $query = []; $routeValue = 'route-value'; diff --git a/typo3/sysext/frontend/Tests/Functional/SiteHandling/Fixtures/LinkHandlingController.php b/typo3/sysext/frontend/Tests/Functional/SiteHandling/Fixtures/LinkHandlingController.php index 0c3a11534cd4f29ebc030f9c1a1e1bc4aaaa7f95..81830dcb6ac221b35e1877a7646ca455396ab007 100644 --- a/typo3/sysext/frontend/Tests/Functional/SiteHandling/Fixtures/LinkHandlingController.php +++ b/typo3/sysext/frontend/Tests/Functional/SiteHandling/Fixtures/LinkHandlingController.php @@ -62,7 +62,7 @@ class LinkHandlingController * @param array|null $configuration * @return string */ - public function dumpPageArgumentsAction(?string $content, array $configuration = null): string + public function dumpPageArgumentsAction(?string $content, ?array $configuration = null): string { /** @var ServerRequestInterface $request */ $request = $GLOBALS['TYPO3_REQUEST']; diff --git a/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/TestSet.php b/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/TestSet.php index 5c6c5616771acdca0fc5f20ef6a959a33b861f25..e00d990c1e1fa6e4abd48c43ed6a12e45f8fe5c4 100644 --- a/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/TestSet.php +++ b/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/TestSet.php @@ -67,7 +67,7 @@ class TestSet * @param string $type * @return Applicable[] */ - public function getApplicables(string $type = null): array + public function getApplicables(?string $type = null): array { if ($type === null) { return $this->applicables; diff --git a/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariableValue.php b/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariableValue.php index 09a632e191ff7c7e0980a297ade197cd7a477c93..3122bf4443232fbcec62b6318f1b45b04713cd1c 100644 --- a/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariableValue.php +++ b/typo3/sysext/frontend/Tests/Functional/SiteHandling/Framework/Builder/VariableValue.php @@ -41,21 +41,21 @@ class VariableValue */ private array $requiredDefinedVariableNames; - public static function create(string $value, Variables $defaultVariables = null): self + public static function create(string $value, ?Variables $defaultVariables = null): self { return new static($value, $defaultVariables); } public static function createUrlEncodedParams( string $value, - Variables $defaultVariables = null, + ?Variables $defaultVariables = null, string $prefix = '&' ): self { $value = self::urlEncodeParams($value, $prefix); return self::create($value, $defaultVariables); } - private function __construct(string $value, Variables $defaultVariables = null) + private function __construct(string $value, ?Variables $defaultVariables = null) { $variableNames = self::extractVariableNames($value); if ($variableNames === []) { diff --git a/typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/Matcher/Fixtures/Subject.php b/typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/Matcher/Fixtures/Subject.php index 04db96958e92fc08005c9afe3c92c5ea185e2679..8ad491ce7c325d401ce076b392c68dbb3c77abb0 100644 --- a/typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/Matcher/Fixtures/Subject.php +++ b/typo3/sysext/install/Tests/Unit/ExtensionScanner/Php/Matcher/Fixtures/Subject.php @@ -22,5 +22,5 @@ namespace TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures; */ class Subject { - public function __construct(string $a = null, string $b = null, string $c = null) {} + public function __construct(?string $a = null, ?string $b = null, ?string $c = null) {} } diff --git a/typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php b/typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php index 21825be47edebd03577723e1ff9e4b26f105d8b1..0e62f3104c012b07c80d1fdccc5d9f1b092578e1 100644 --- a/typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php +++ b/typo3/sysext/workspaces/Tests/Unit/Controller/Remote/RemoteServerTest.php @@ -112,7 +112,7 @@ class RemoteServerTest extends UnitTestCase * @dataProvider prepareFileReferenceDifferencesAreCorrectDataProvider * @test */ - public function prepareFileReferenceDifferencesAreCorrect(string $fileFileReferenceList, string $versionFileReferenceList, bool $useThumbnails, array $expected = null): void + public function prepareFileReferenceDifferencesAreCorrect(string $fileFileReferenceList, string $versionFileReferenceList, bool $useThumbnails, ?array $expected = null): void { $liveFileReferences = $this->getFileReferenceMocks($fileFileReferenceList); $versionFileReferences = $this->getFileReferenceMocks($versionFileReferenceList);