| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function convertToCode($name, $locale = 'en') |
||
| 25 | { |
||
| 26 | $localeNames = Intl::getLocaleBundle()->getLocaleNames($locale); |
||
| 27 | $localeCode = array_search($name, $localeNames, true); |
||
| 28 | |||
| 29 | if (false === $localeCode) { |
||
| 30 | throw new \InvalidArgumentException( |
||
| 31 | sprintf('Cannot find code for %s locale', $name) |
||
| 32 | ); |
||
| 33 | } |
||
| 34 | |||
| 35 | return $localeCode; |
||
| 36 | } |
||
| 37 | } |
||
| 38 |