-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUpdateOrderStatus.php
38 lines (30 loc) · 999 Bytes
/
UpdateOrderStatus.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
namespace PayU\PaymentGateway\Model;
use PayU\PaymentGateway\Api\PayUConfigInterface;
use PayU\PaymentGateway\Api\PayUUpdateOrderStatusInterface;
class UpdateOrderStatus implements PayUUpdateOrderStatusInterface
{
private PayUConfigInterface $payUConfig;
public function __construct(
PayUConfigInterface $payUConfig
) {
$this->payUConfig = $payUConfig;
}
/**
* {@inheritdoc}
*/
public function update(string $type, int $storeId, string $orderId, string $status): \OpenPayU_Result
{
$this->payUConfig->setDefaultConfig($type, $storeId);
$orderStatusUpdate = ['orderId' => $orderId, 'orderStatus' => $status];
return \OpenPayU_Order::statusUpdate($orderStatusUpdate);
}
/**
* {@inheritdoc}
*/
public function cancel(string $type, int $storeId, string $orderId)
{
$this->payUConfig->setDefaultConfig($type, $storeId);
return \OpenPayU_Order::cancel($orderId);
}
}