Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | public function getData() { |
||
8 | $data = array(); |
||
9 | $data['InvoiceValue'] = $this->getAmount(); |
||
10 | $data['CustomerReference'] = $this->getOrderRef(); |
||
11 | $data['DisplayCurrencyIso'] = $this->getCurrency(); |
||
12 | $data['CallBackUrl'] = $this->getCallBackUrl(); |
||
13 | $data['ErrorUrl'] = $this->getCallBackUrl(); |
||
14 | $data['CustomerName'] = $this->getFirstName() . ' ' . $this->getLastName(); |
||
15 | $data['CustomerEmail'] = $this->getEmail(); |
||
16 | $data['NotificationOption'] = "LNK"; |
||
17 | return $data; |
||
18 | } |
||
30 |