Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
37 | 3 | public function __construct( |
|
38 | string $geoCode, |
||
39 | string $geoName, |
||
40 | int $value, |
||
41 | int $maxValueIndex, |
||
42 | bool $hasData |
||
43 | ) { |
||
44 | 3 | $this->geoCode = $geoCode; |
|
45 | 3 | $this->geoName = $geoName; |
|
46 | 3 | $this->value = $value; |
|
47 | 3 | $this->maxValueIndex = $maxValueIndex; |
|
48 | 3 | $this->hasData = $hasData; |
|
49 | 3 | } |
|
50 | |||
90 |