Conditions | 2 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 2 | public function create(array $data): Country |
|
15 | { |
||
16 | 2 | return new DefaultCountry( |
|
17 | 2 | [ |
|
18 | 2 | 'cs' => $data['name_cz'], |
|
19 | 2 | 'en' => $data['name_en'], |
|
20 | 2 | ], |
|
21 | 2 | $data['iso_code'], |
|
22 | 2 | $data['currency'], |
|
23 | 2 | is_array($data['phone_prefix']) ? array_values($data['phone_prefix']) : [$data['phone_prefix']], |
|
24 | 2 | $data['continent'], |
|
25 | 2 | ); |
|
57 |