Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../Modules/PaymentGateway/PaymentGatewayProvider
الملفات الموجودة في هذا الـ Path:
.
..
AuthorizeNetPayment.php
CashmallPayment.php
IyzicoPayment.php
MolliePayment.php
PayPalPayment.php
Payment.php
PaymentGateway.php
PaymentInterface.php
PaystackPayment.php
PaytmPayment.php
ProcessPayment.php
StripeCheckoutPayment.php
StripePayment.php

مشاهدة ملف: Payment.php

<?php

namespace Modules\PaymentGateway\PaymentGatewayProvider;

class Payment
{
    public $gateway;

    public function __construct(PaymentInterface $payment)
    {
        $this->gateway=$payment;
    }

    public function trigger(){
        $this->gateway->process();
        return $this;
    }

}