src/Entity/NewsTranslations.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\NewsRepository')]
  6. #[ORM\Table(name'news_translations')]
  7. #[ORM\Index(name'news_translation_idx'columns: ['locale''object_class''field''foreign_key'])]
  8. class NewsTranslations extends AbstractTranslation
  9. {
  10.     // All required columns are mapped through inherited superclass
  11. }