<?php declare(strict_types=1);
namespace Shopware\Core\Content\Product\Aggregate\ProductManufacturer;
use Shopware\Core\Framework\Context;
use Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityHydrator;
use Shopware\Core\Framework\DataAbstractionLayer\Entity;
use Shopware\Core\Framework\DataAbstractionLayer\EntityDefinition;
use Shopware\Core\Framework\Log\Package;
use Shopware\Core\Framework\Uuid\Uuid;
#[Package('inventory')]
class ProductManufacturerHydrator extends EntityHydrator
{
protected function assign(EntityDefinition $definition, Entity $entity, string $root, array $row, Context $context): Entity
{
if (isset($row[$root . '.id'])) {
$entity->id = Uuid::fromBytesToHex($row[$root . '.id']);
}
if (isset($row[$root . '.versionId'])) {
$entity->versionId = Uuid::fromBytesToHex($row[$root . '.versionId']);
}
if (isset($row[$root . '.mediaId'])) {
$entity->mediaId = Uuid::fromBytesToHex($row[$root . '.mediaId']);
}
if (isset($row[$root . '.link'])) {
$entity->link = $row[$root . '.link'];
}
if (isset($row[$root . '.createdAt'])) {
$entity->createdAt = new \DateTimeImmutable($row[$root . '.createdAt']);
}
if (isset($row[$root . '.updatedAt'])) {
$entity->updatedAt = new \DateTimeImmutable($row[$root . '.updatedAt']);
}
$entity->media = $this->manyToOne($row, $root, $definition->getField('media'), $context);
$this->translate($definition, $entity, $row, $root, $context, $definition->getTranslatedFields());
$this->hydrateFields($definition, $entity, $root, $row, $context, $definition->getExtensionFields());
$this->customFields($definition, $row, $root, $entity, $definition->getField('customFields'), $context);
return $entity;
}
}