| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public function getPayment($userId, $monetaryAccountId, $id) |
||
| 50 | { |
||
| 51 | $paymentResponse = $this->client->get($this->getResourceEndpoint($userId, $monetaryAccountId) . '/' . (int)$id); |
||
| 52 | |||
| 53 | $payment = $paymentResponse['Response'][0]['Payment']; |
||
| 54 | |||
| 55 | $payment['amount']['value'] = $this->floatToCents($payment['amount']['value']); |
||
| 56 | |||
| 57 | return $payment; |
||
| 58 | } |
||
| 59 | |||
| 81 |