src/Entity/PagePreviewTranslations.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Translatable\Entity\MappedSuperclass\AbstractTranslation;
  5. #[ORM\Entity(repositoryClass: 'Gedmo\Translatable\Entity\Repository\PageTranslationRepository')]
  6. #[ORM\Table(name: 'pagepreview_translations')]
  7. #[ORM\Index(name: 'pagepreview_translation_idx', columns: ['locale', 'object_class', 'field', 'foreign_key'])]
  8. class PagePreviewTranslations extends AbstractTranslation
  9. {
  10. // All required columns are mapped through inherited superclass
  11. }