| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 15 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 14 | public function getData() | ||
| 15 |     { | ||
| 16 |         $this->validate('merchantId', 'amount', 'currency', 'transactionReference'); | ||
| 17 | |||
| 18 | $data = [ | ||
| 19 | 'amountOfMoney' => [ | ||
| 20 | 'amount' => $this->getAmountInteger(), | ||
| 21 | 'currencyCode' => $this->getCurrency(), | ||
| 22 | ], | ||
| 23 | 'operationReferences' => [ | ||
| 24 | 'merchantReference' => $this->getTransactionId(), | ||
| 25 | ], | ||
| 26 | ]; | ||
| 27 | |||
| 28 | return $data; | ||
| 29 | } | ||
| 41 |