Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 3 | public function getData() |
|
16 | { |
||
17 | 3 | $this->validate('purse', 'currency', 'amount', 'description'); |
|
18 | return [ |
||
19 | 'ok_receiver' => $this->getPurse(), |
||
20 | 3 | 'ok_item_1_name' => $this->getDescription(), |
|
21 | 3 | 'ok_currency' => $this->getCurrency(), |
|
22 | 3 | 'ok_item_1_price' => $this->getAmount(), |
|
23 | 3 | 'ok_invoice' => $this->getTransactionId(), |
|
24 | 3 | 'ok_ipn' => $this->getNotifyUrl(), |
|
25 | 3 | 'ok_return_success' => $this->getReturnUrl(), |
|
26 | 3 | 'ok_return_fail' => $this->getCancelUrl(), |
|
27 | 3 | 'ok_fees' => $this->getFees(), |
|
28 | 3 | ]; |
|
29 | 3 | } |
|
30 | |||
36 |