ekart/backend/app/Services/Payment/PaymentGatewayFactory.php
2026-03-25 17:17:35 +05:30

17 lines
345 B
PHP

<?php
namespace App\Services\Payment;
use App\Enums\Payment\PaymentModes;
class PaymentGatewayFactory
{
public function make(PaymentModes $mode)
{
return match ($mode) {
PaymentModes::CashOnDelivery => new CodPaymentGateway,
PaymentModes::StripeCheckout => new StripePaymentGateway,
};
}
}