src/SeoBundle/Entity/Translation/SeoTranslation.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\SeoBundle\Entity\Translation;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use PN\SeoBundle\Entity\Translation\SeoTranslation as BaseSeoTranslation;
  5. /**
  6. * @ORM\Entity
  7. * @ORM\Table(name="seo_translations")
  8. */
  9. class SeoTranslation extends BaseSeoTranslation {
  10. /**
  11. * @ORM\Id
  12. * @ORM\ManyToOne(targetEntity="App\SeoBundle\Entity\Seo", inversedBy="translations")
  13. * @ORM\JoinColumn(name="translatable_id", referencedColumnName="id")
  14. */
  15. protected $translatable;
  16. }