Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/dealnest.codeskitter.site/app/Services/Payment/
Upload File :
Current File : /home/users/unlimited/www/dealnest.codeskitter.site/app/Services/Payment/PaymentInterface.php

<?php

namespace App\Services\Payment;

interface PaymentInterface {
    public function createPaymentIntent($amount, $customMetaData);

    public function createAndFormatPaymentIntent($amount, $customMetaData): array;

    public function retrievePaymentIntent($paymentId): array;

    public function minimumAmountValidation($currency, $amount);

    public function formatPaymentIntent($id, $amount, $currency, $status, $metadata, $paymentIntent): array;
}