Closed
Description
if ($productData->getVendorId()) {
$vendorVariant->setVendor(
$this->entityManager
->getReference(Vendor::class, $productData->getVendorId())
);
}
Should be:
if ($productData->getVendorId()) {
$vendorVariant->setVendor(
$this->entityManager
->getReference(Vendor::class, $productData->getVendorId())
);
}