Feature #97753
openBackend module upgrade task
0%
Description
In the upgrade backend module there is the part "scan extension files".
This should help to identify deprecated or removed dependencies.
In some cases, there are issues found which are not needed to fix.
2 Examples:
1.
$cObj = $configurationManager->getContentObject();
"Deprecation: #68748 - Deprecate AbstractContentObject::getContentObject()"
But, my usage of this method is from another class as the deprecated one.
2. return $this->synonyms;
"Deprecation: #85122 - Functionality in CharsetConverter"
But, this line of code is from a ModelClass which returns a property.
I think the scanner doesn't look closely enough. This is ok, but, it was very usefull if i can mark those issues as "no change needed" or something like that. So it would be easier to go through all of them and decide by myself if a code change is needed or not.
No data to display