Files
Business-credit-asistant/app/Services/Payment/PaymentInterface.php
2026-06-29 13:00:18 +06:00

13 lines
154 B
PHP

<?php
namespace App\Services\Payment;
interface PaymentInterface
{
public function makePayment($data);
public function prepareData($data);
}