Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function getData() |
||
23 | { |
||
24 | $this->validate('merchantId', 'merchantPassword', 'acquirerId', 'transactionId'); |
||
25 | |||
26 | $data = [ |
||
27 | 'AcquirerId' => $this->getAcquirerId(), |
||
28 | 'MerchantId' => $this->getMerchantId(), |
||
29 | 'Password' => $this->getMerchantPassword(), |
||
30 | 'OrderNumber' => $this->getTransactionId() |
||
31 | ]; |
||
32 | |||
33 | return $data; |
||
34 | } |
||
35 | |||
58 |