Conditions | 1 |
Paths | 1 |
Total Lines | 22 |
Code Lines | 0 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | 2 | public function __construct( |
|
12 | #[Serializer\Type('int')] |
||
13 | public ?int $id = null, |
||
14 | |||
15 | #[Serializer\Type('string')] |
||
16 | public ?string $name = null, |
||
17 | |||
18 | #[Serializer\Type('string')] |
||
19 | public ?string $nameEn = null, |
||
20 | |||
21 | #[Serializer\Type('string')] |
||
22 | public ?string $regionName = null, |
||
23 | |||
24 | #[Serializer\Type('string')] |
||
25 | public ?string $regionNameEn = null, |
||
26 | |||
27 | #[Serializer\Type('string')] |
||
28 | public ?string $phoneCode = null, |
||
29 | |||
30 | #[Serializer\Type(Country::class)] |
||
31 | public ?Country $country = null, |
||
32 | |||
33 | #[Serializer\Type(GeoLocation::class)] |
||
41 |