| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class Localization_Country_CH extends Localization_Country_DE |
||
| 18 | { |
||
| 19 | public const ISO_CODE = 'ch'; |
||
| 20 | |||
| 21 | public function getCode(): string |
||
| 22 | { |
||
| 23 | return self::ISO_CODE; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getLabel() : string |
||
| 27 | { |
||
| 28 | return t('Switzerland'); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getCurrencyISO() : string |
||
| 32 | { |
||
| 33 | return Localization_Currency_EUR::ISO_CODE; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getNumberThousandsSeparator(): string |
||
| 39 | } |
||
| 40 | } |
||
| 41 |