| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct(object $target, Locale $locale) |
||
| 23 | { |
||
| 24 | $l = $locale['currencies'][$target->code]; |
||
| 25 | $this->name = $l['displayName']; |
||
|
|
|||
| 26 | // Not all currencies have a symbol, we default to the currency code in those cases. |
||
| 27 | $this->symbol = $l['symbol'] ?? $target->code; |
||
| 28 | |||
| 29 | parent::__construct($target, $locale, $locale->currency_formatter); |
||
| 30 | } |
||
| 62 |