Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?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;
- }
-
- }
|