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.

26 line
589B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Site;
  3. use Lc\CaracoleBundle\Context\MerchantContextTrait;
  4. use Lc\CaracoleBundle\Context\SectionContextTrait;
  5. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  6. use Lc\SovBundle\Factory\Site\NewsFactory as SovNewsFactory;
  7. use Lc\SovBundle\Model\Site\NewsInterface;
  8. class NewsFactory extends SovNewsFactory
  9. {
  10. use SectionContextTrait;
  11. public function create(): NewsInterface
  12. {
  13. $news = parent::create();
  14. if($this->section) {
  15. $news->setSection($this->section);
  16. }
  17. return $news;
  18. }
  19. }