<?php
declare(strict_types=1);
namespace App\Entity\Configurator;
use Doctrine\ORM\Mapping as ORM;
use Sylius\Component\Resource\Model\AbstractTranslation;
use Sylius\Component\Resource\Model\ResourceInterface;
/**
* @ORM\Entity
* @ORM\Table(name="app_configurator_font_color_translation")
*/
class FontColorTranslation extends AbstractTranslation implements ResourceInterface
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
protected ?int $id = null;
/**
* @ORM\Column(type="string", name="meta_title", nullable=true)
*/
protected ?string $metaTitle = null;
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @param mixed $id
*/
public function setId($id): void
{
$this->id = $id;
}
/**
* @return string
*/
public function getMetaTitle(): ?string
{
return $this->metaTitle;
}
/**
* @param string $metaTitle
*/
public function setMetaTitle(?string $metaTitle): void
{
$this->metaTitle = $metaTitle;
}
}