| Total Complexity | 5 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 4 | class Money |
||
| 5 | { |
||
| 6 | public function convertAmount($amount, $from_currency, $to_currency) |
||
| 7 | { |
||
| 8 | return $this->getConvRate($from_currency, $to_currency) * $amount; |
||
| 9 | } |
||
| 10 | |||
| 11 | public function getConvRate($from_currency, $to_currency) |
||
| 26 | |||
| 27 | } |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getConvUrl($from_currency, $to_currency) |
||
| 34 | } |
||
| 35 | } |
||
| 36 |