| Total Complexity | 6 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Country |
||
| 8 | { |
||
| 9 | protected array $list = []; |
||
| 10 | |||
| 11 | 2 | public function __construct(array $name) |
|
| 14 | } |
||
| 15 | |||
| 16 | 1 | public function list(?string $key = null, mixed $default = null): mixed |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Find correct ISO code. |
||
| 27 | * |
||
| 28 | * @param string|null $string $string |
||
| 29 | * |
||
| 30 | * @return string|null |
||
| 31 | */ |
||
| 32 | 1 | public function findISOCode(?string $string = null): ?string |
|
| 46 |