Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
9 | class CountryDropdownField extends DropdownField |
||
10 | { |
||
11 | /** |
||
12 | * @var bool |
||
13 | */ |
||
14 | protected $hasEmptyDefault = true; |
||
15 | |||
16 | /** |
||
17 | * @param string $name |
||
18 | * @param string$title |
||
19 | * @param array<string,string>|ArrayAccess<string,string> $source |
||
20 | * @param mixed $value |
||
21 | */ |
||
22 | public function __construct($name = 'CountryCode', $title = null, $source = [], $value = null) |
||
34 |