You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 satır
496B

  1. <?php
  2. namespace Lc\AdminBundle\Entity\Translation;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Translatable\Entity\MappedSuperclass\AbstractTranslation;
  5. /**
  6. * @ORM\Table(name="lc_translations_entity", indexes={
  7. * @ORM\Index(name="entity_translation_idx", columns={"locale", "object_class", "field", "foreign_key"})
  8. * })
  9. * @ORM\Entity(repositoryClass="Lc\AdminBundle\Repository\BaseRepository")
  10. */
  11. class EntityTranslation extends AbstractTranslation
  12. {
  13. //put your code here
  14. }