classify admin

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:01 +05:00
commit e0f1989655
769 changed files with 1263008 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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;
//
// public function checkPayment(Order $order): PaymentStatus;
}