|
1234567891011121314151617181920212223 |
- <?php
-
- namespace Lc\CaracoleBundle\Factory\Site;
-
- use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
- use Lc\CaracoleBundle\Factory\SectionFactoryTrait;
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\SovBundle\Factory\Site\PageFactory as SovPageFactory;
- use Lc\SovBundle\Model\Site\PageInterface;
-
- class PageFactory extends SovPageFactory
- {
- use SectionFactoryTrait;
-
- public function create(): PageInterface
- {
- $page = parent::create();
-
- $page->setSection($this->section);
-
- return $page;
- }
- }
|