ekart/backend/app/Contracts/PaymentGateway.php
2026-03-25 17:17:35 +05:30

12 lines
188 B
PHP

<?php
namespace App\Contracts;
use App\Data\Payment\PaymentResponseDTO;
use App\Models\Order;
interface PaymentGateway
{
public function charge(Order $order): PaymentResponseDTO;
}