Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 3 | public function convert(string $fromCurrency, string $toCurrency, $amount) :float |
|
25 | { |
||
26 | 3 | $this->fromCurrency = $fromCurrency; |
|
27 | 3 | $this->toCurrency = $toCurrency; |
|
28 | |||
29 | 3 | $rate = $this->rates->getRates($fromCurrency, $toCurrency); |
|
30 | |||
31 | 2 | return $this->calculateValue($rate, $amount); |
|
32 | } |
||
33 | |||
61 |