This commit is contained in:
2025-09-25 15:31:42 +05:00
parent a9df04edc5
commit d9aae9fa1a

View File

@@ -396,11 +396,13 @@ function createHalkbankOrder($price = 123): array
return [ return [
'status' => 'failed', 'status' => 'failed',
'url' => '', 'url' => '',
'orderId' => ''
]; ];
} }
return [ return [
'status' => 'success', 'status' => 'success',
'url' => $paymentResponse['formUrl'], 'url' => $paymentResponse['formUrl'],
'orderId' => 'orderId'
]; ];
} }