Passed
Push — main ( a8b0f9...5ab65b )
by Vasil
03:25
created

City   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 24
ccs 1
cts 1
cp 1
rs 10
c 1
b 0
f 0
wmc 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace VasilDakov\Econt\Model;
6
7
use JMS\Serializer\Annotation as Serializer;
8
9
final readonly class City
0 ignored issues
show
Bug introduced by
A parse error occurred: Syntax error, unexpected T_READONLY, expecting T_CLASS on line 9 at column 6
Loading history...
10
{
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)]
34
        public ?GeoLocation $location = null,
35
36
        #[Serializer\Type('string',)]
37
        public ?string $postCode = null
38
    ) {
39 2
    }
40
}
41