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