Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

23 lines
498B

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