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.
|
- <?php
-
- namespace Lc\CaracoleBundle\Factory\Section;
-
- use App\Entity\Section\Section;
- use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
- use Lc\CaracoleBundle\Factory\SectionFactoryTrait;
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class SectionFactory extends AbstractFactory implements SectionFactoryInterface
- {
- use MerchantFactoryTrait;
-
- public function create(): SectionInterface
- {
- $section = new Section();
-
- $section->setMerchant($this->merchant);
-
- return $section;
- }
-
- }
|