Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public static function getName($countryCode) |
||
29 | { |
||
30 | if (!isset(self::$countries[$countryCode])) { |
||
31 | throw new \OutOfBoundsException( |
||
32 | sprintf( |
||
33 | "Could not find corresponding country name for the country code %s", |
||
34 | $countryCode |
||
35 | ) |
||
36 | ); |
||
37 | } |
||
38 | |||
39 | return self::$countries[$countryCode]; |
||
40 | } |
||
41 | } |
||
42 |