Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?php
-
- namespace Lc\CaracoleBundle\Factory\Order;
-
- use App\Entity\Order\OrderProductReductionCatalog;
- use Lc\CaracoleBundle\Model\Order\OrderProductReductionCatalogInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class OrderProductReductionCatalogFactory extends AbstractFactory implements OrderProductReductionCatalogFactoryInterface
- {
- public function create(): OrderProductReductionCatalogInterface
- {
- $orderProductReductionCatalog = new OrderProductReductionCatalog();
-
- return $orderProductReductionCatalog;
- }
-
- }
|