Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
16 | public function getData() |
||
17 | 3 | { |
|
18 | 3 | $this->validate( |
|
19 | 3 | 'purse', |
|
20 | 3 | 'amount', 'currency', 'description', |
|
21 | 'returnUrl', 'cancelUrl', 'notifyUrl' |
||
22 | ); |
||
23 | |||
24 | 3 | return [ |
|
25 | 3 | 'ECM_PURCH_DESC' => $this->getDescription(), |
|
26 | 3 | 'ECM_INV_NO' => $this->getTransactionId(), |
|
27 | 3 | 'ECM_PAYEE_ID' => $this->getPurse(), |
|
28 | 3 | 'ECM_ITEM_COST' => $this->getAmount(), |
|
29 | 3 | 'ECM_QTY' => '1', |
|
30 | 3 | 'ECM_RESULT_URL' => $this->getNotifyUrl(), |
|
31 | 3 | 'ECM_SUCCESS_URL' => $this->getReturnUrl(), |
|
32 | 'ECM_FAIL_URL' => $this->getCancelUrl(), |
||
33 | ]; |
||
34 | } |
||
35 | 2 | ||
41 |