[TASK] Avoid implicitly nullable class method parameter in `EXT:form`
With PHP 8.4 marking method parameter implicitly nullable is deprecated and will emit a `E_DEPRECATED` warning. One recommended way to resolve this, is making it explicitly nullable using the `?` nullable operator or adding a null tyype to an union type definition. [1] This prepares the way towards PHP 8.4 compatibility. [1] https://php.watch/versions/8.4/implicitly-marking-parameter-type-nullable-deprecated Resolves: #104238 Releases: main, 12.4, 11.5 Change-Id: I340f35379b74d1ca05527a6950eab5ba66ffaae6 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84978 Reviewed-by:Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
Showing
- typo3/sysext/form/Classes/Controller/FormEditorController.php 2 additions, 2 deletions...3/sysext/form/Classes/Controller/FormEditorController.php
- typo3/sysext/form/Classes/Domain/Configuration/FormDefinition/Validators/ValidationDto.php 6 additions, 6 deletions...Configuration/FormDefinition/Validators/ValidationDto.php
- typo3/sysext/form/Classes/Domain/Factory/ArrayFormFactory.php 1 addition, 1 deletion...3/sysext/form/Classes/Domain/Factory/ArrayFormFactory.php
- typo3/sysext/form/Classes/Domain/Factory/FormFactoryInterface.php 1 addition, 1 deletion...sext/form/Classes/Domain/Factory/FormFactoryInterface.php
- typo3/sysext/form/Classes/Domain/Model/FormDefinition.php 1 addition, 1 deletiontypo3/sysext/form/Classes/Domain/Model/FormDefinition.php
- typo3/sysext/form/Classes/Domain/Runtime/FormRuntime/FormSession.php 1 addition, 1 deletion...t/form/Classes/Domain/Runtime/FormRuntime/FormSession.php
- typo3/sysext/form/Classes/Mvc/Configuration/ConfigurationManager.php 1 addition, 1 deletion...t/form/Classes/Mvc/Configuration/ConfigurationManager.php
- typo3/sysext/form/Classes/Mvc/Property/TypeConverter/FormDefinitionArrayConverter.php 1 addition, 1 deletion...c/Property/TypeConverter/FormDefinitionArrayConverter.php
- typo3/sysext/form/Classes/Mvc/Property/TypeConverter/UploadedFileReferenceConverter.php 3 additions, 3 deletions...Property/TypeConverter/UploadedFileReferenceConverter.php
- typo3/sysext/form/Classes/Service/TranslationService.php 6 additions, 6 deletionstypo3/sysext/form/Classes/Service/TranslationService.php
- typo3/sysext/form/Classes/Slot/FilePersistenceSlot.php 4 additions, 4 deletionstypo3/sysext/form/Classes/Slot/FilePersistenceSlot.php
- typo3/sysext/form/Classes/ViewHelpers/Form/TimePickerViewHelper.php 2 additions, 2 deletions...xt/form/Classes/ViewHelpers/Form/TimePickerViewHelper.php
Please register or sign in to comment