This commit is contained in:
2025-11-02 18:19:25 +05:00
parent 90b5a6bd6f
commit 910a7dd1b2
5 changed files with 119 additions and 99 deletions

View File

@@ -8,6 +8,8 @@ interface PaymentProviderContract
{
public function sendRequest(): Response;
public function checkPayment(string $orderId): Response;
public function orderNumber(): int|string;
public function amount(): int|float|string;
@@ -17,4 +19,8 @@ interface PaymentProviderContract
public function returnUrl(): string;
public function username(): string;
public function setUsername(string $username): self;
public function setPassword(string $password): self;
}