17 lines
345 B
PHP
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,
|
|
};
|
|
}
|
|
}
|