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