mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 11:16:10 +01:00
Do not break PHPStan due to new PHPDoc in TYPO3 source
Update of TYPO3 results in the following error: ------ ----------------------------------------------------------------------- Line Classes/Service/DestinationDataImportService.php ------ ----------------------------------------------------------------------- 135 Property Wrm\Events\Service\DestinationDataImportService::$objectManager with generic class TYPO3\CMS\Extbase\Object\ObjectManager does not specify its types: T 💡 You can turn this off by setting checkGenericClassInNonGenericObjectType: false in your phpstan.neon. 160 Method Wrm\Events\Service\DestinationDataImportService::__construct() has parameter $objectManager with generic class TYPO3\CMS\Extbase\Object\ObjectManager but does not specify its types: T 💡 You can turn this off by setting checkGenericClassInNonGenericObjectType: false in your phpstan.neon. ------ ----------------------------------------------------------------------- We disable the check for now.
This commit is contained in:
parent
d5ad0a66a8
commit
de6c317602
1 changed files with 1 additions and 0 deletions
|
@ -6,4 +6,5 @@ parameters:
|
||||||
- Classes
|
- Classes
|
||||||
- Configuration
|
- Configuration
|
||||||
checkMissingIterableValueType: false
|
checkMissingIterableValueType: false
|
||||||
|
checkGenericClassInNonGenericObjectType: false
|
||||||
reportUnmatchedIgnoredErrors: false
|
reportUnmatchedIgnoredErrors: false
|
||||||
|
|
Loading…
Reference in a new issue