| 1 | <?php |
||
| 17 | class FormatMoneyHelper extends Helper implements FormatMoneyHelperInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var MoneyFormatterInterface |
||
| 21 | */ |
||
| 22 | private $moneyFormatter; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param MoneyFormatterInterface $moneyFormatter |
||
| 26 | */ |
||
| 27 | public function __construct(MoneyFormatterInterface $moneyFormatter) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function formatAmount($amount, $currencyCode, $localeCode) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function getName() |
||
| 47 | } |
||
| 48 |