Passed
Push — main ( 417efa...3246f4 )
by Vasil
02:26
created

City::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
nc 1
nop 6
dl 0
loc 8
ccs 1
cts 1
cp 1
crap 1
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace VasilDakov\Shipping\Model;
4
5
class City
6
{
7 1
    public function __construct(
8
        public ?int $id = null,
9
        public ?string $countryId = null,
10
        public ?Country $country = null,
11
        public ?string $name = null,
12
        public ?string $nameEn = null,
13
        public ?string $postCode = null,
14
    ) {
15 1
    }
16
}
17