Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | public function __construct( |
||
47 | int $id, |
||
48 | string $name, |
||
49 | ?string $state, |
||
50 | ?string $stateCode, |
||
51 | ?Country $county, |
||
52 | ?Geo $geo |
||
53 | ) { |
||
54 | $this->id = $id; |
||
55 | $this->name = $name; |
||
56 | $this->state = $state; |
||
57 | $this->stateCode = $stateCode; |
||
58 | $this->country = $county; |
||
59 | $this->geo = $geo; |
||
60 | } |
||
61 | |||
126 |