Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 6 | public function getData() |
|
16 | { |
||
17 | 6 | $this->validate('transactionReference', 'paymentMethod'); |
|
18 | |||
19 | 6 | $data = $this->getBaseData(); |
|
20 | 6 | $data['transType'] = 'INQY'; |
|
21 | 6 | $data['orderNum'] = $this->getTransactionReference(); |
|
22 | 6 | $data['paymentSchema'] = $this->getPaymentMethod(); |
|
23 | |||
24 | 6 | return $data; |
|
25 | } |
||
26 | |||
32 |