No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

NewsFactory.php 589B

hace 3 años
hace 3 años
hace 3 años
hace 3 años
12345678910111213141516171819202122232425
  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. }