<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Translatable\Entity\MappedSuperclass\AbstractTranslation;
#[ORM\Entity(repositoryClass: 'Gedmo\Translatable\Entity\Repository\HtmlBlocksRepository')]
#[ORM\Table(name: 'html_blocks_translations')]
#[ORM\Index(name: 'html_blocks_translation_idx', columns: ['locale', 'object_class', 'field', 'foreign_key'])]
class HtmlBlocksTranslations extends AbstractTranslation
{
// All required columns are mapped through inherited superclass
}