<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Gedmo\Translatable\Entity\MappedSuperclass\AbstractTranslation;/** * @ORM\Table(name="product_translation", indexes={ * @ORM\Index(name="product_idx", columns={"locale", "object_class", "field", "foreign_key"}) * }) * @ORM\Entity(repositoryClass="Gedmo\Translatable\Entity\Repository\TranslationRepository") */class ProductTranslation extends AbstractTranslation{ }