<?php
declare(strict_types=1);
namespace App\Entity\Product;
use Doctrine\ORM\Mapping as ORM;
use Sylius\Component\Core\Model\ProductTranslation as BaseProductTranslation;
/**
* @ORM\Entity
* @ORM\Table(name="sylius_product_translation")
*/
class ProductTranslation extends BaseProductTranslation
{
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $videoUrl;
public function getVideoUrl(): ?string
{
return $this->videoUrl;
}
/**
* @param mixed $videoUrl
*/
public function setVideoUrl($videoUrl): self
{
$this->videoUrl = $videoUrl;
return $this;
}
}