Total Complexity | 6 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
4 | class Money |
||
5 | { |
||
6 | public $log; |
||
7 | |||
8 | public function __construct() |
||
11 | } |
||
12 | |||
13 | public function convertAmount($amount, $from_currency, $to_currency) |
||
14 | { |
||
15 | return $this->getConvRate($from_currency, $to_currency) * $amount; |
||
16 | } |
||
17 | |||
18 | public function getConvRate($from_currency, $to_currency) |
||
37 | |||
38 | } |
||
39 | } |
||
40 | |||
41 | public function getConvUrl($from_currency, $to_currency) |
||
45 | } |
||
46 | } |
||
47 |