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\OrderPayment;
- use Lc\CaracoleBundle\Model\Order\OrderPaymentInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class OrderPaymentFactory extends AbstractFactory
- {
- public function create(): OrderPaymentInterface
- {
- $orderPayment = new OrderPayment();
-
- return $orderPayment;
- }
-
- }
|