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.

23 lines
490B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Site;
  3. use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
  4. use Lc\CaracoleBundle\Factory\SectionFactoryTrait;
  5. use Lc\SovBundle\Factory\Site\PageFactory as SovPageFactory;
  6. use Lc\SovBundle\Model\Site\PageInterface;
  7. class PageFactory extends SovPageFactory
  8. {
  9. use SectionFactoryTrait;
  10. public function create(): PageInterface
  11. {
  12. $page = parent::create();
  13. $page->setSection($this->section);
  14. return $page;
  15. }
  16. }