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.

NewsletterModel.php 795B

3 년 전
2 년 전
12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Newsletter;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Lc\CaracoleBundle\Doctrine\Extension\FilterSectionInterface;
  5. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  6. use Lc\SovBundle\Model\Newsletter\NewsletterModel as SovNewsletterModel;
  7. /**
  8. * @ORM\MappedSuperclass()
  9. */
  10. abstract class NewsletterModel extends SovNewsletterModel implements FilterSectionInterface
  11. {
  12. /**
  13. * @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Section\SectionInterface", inversedBy="newsletters")
  14. */
  15. protected $section;
  16. public function getSection(): SectionInterface
  17. {
  18. return $this->section;
  19. }
  20. public function setSection(?SectionInterface $section): self
  21. {
  22. $this->section = $section;
  23. return $this;
  24. }
  25. }