| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | 3 | public function getFunctions() |
|
| 38 | { |
||
| 39 | 3 | $currencyService = $this->currency; |
|
| 40 | |||
| 41 | return [ |
||
| 42 | new \Twig_SimpleFunction('currency_name', function ($currency = null) use ($currencyService) { |
||
| 43 | 1 | return $currencyService->getCurrencyName($currency); |
|
| 44 | 3 | }), |
|
| 45 | 3 | new \Twig_SimpleFunction('currency_symbol', function ($currency = null) use ($currencyService) { |
|
| 46 | 1 | return $currencyService->getCurrencySymbol($currency); |
|
| 47 | 3 | }), |
|
| 48 | ]; |
||
| 49 | } |
||
| 50 | |||
| 63 |