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.

24 lines
645B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Order;
  3. use App\Entity\Order\OrderPayment;
  4. use Lc\CaracoleBundle\Model\Order\OrderPaymentInterface;
  5. use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class OrderPaymentFactory extends AbstractFactory
  8. {
  9. public function create(OrderShopInterface $orderShop, string $meanPayment, float $amount): OrderPaymentInterface
  10. {
  11. $orderPayment = new OrderPayment();
  12. $orderPayment->setOrderShop($orderShop);
  13. $orderPayment->setMeanPayment($meanPayment);
  14. $orderPayment->setAmount($amount);
  15. return $orderPayment;
  16. }
  17. }