In einem Plugin war noch folgende Anweisung enthalten, um beim Deinstallieren alte Attribute aus der DB zu entfernen. Das sah in etwa so aus:
try {
$models = Shopware()->Models();
$models->removeAttribute(...);
} catch (Exception $exception) {
//
}
Jetzt ab SW 5.5.x kann ich das Plugin nicht mehr deinstallieren weil:
Got error 'PHP message: PHP Fatal error:
Uncaught Error: Call to undefined method Shopware\\Components\\Model\\ModelManager::removeAttribute()
Habe ich etwas übersehen?