| 1 | <?php |
||
| 19 | final class FormatMoneyExtension extends \Twig_Extension |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var FormatMoneyHelperInterface |
||
| 23 | */ |
||
| 24 | private $helper; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param FormatMoneyHelperInterface $helper |
||
| 28 | */ |
||
| 29 | public function __construct(FormatMoneyHelperInterface $helper) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function getFilters() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function getName() |
||
| 51 | } |
||
| 52 |