Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | final class ConvertPriceToAmount |
||
20 | { |
||
21 | /** @var CurrencyContextInterface */ |
||
22 | private $currencyContext; |
||
23 | |||
24 | /** @var LocaleContextInterface */ |
||
25 | private $localeContext; |
||
26 | |||
27 | /** @var FormatMoneyHelper */ |
||
28 | private $formatMoneyHelper; |
||
29 | |||
30 | public function __construct( |
||
38 | } |
||
39 | |||
40 | public function convert(int $price): string |
||
49 |