| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 79 | 1 | public function jsonSerialize(): array |
|
| 80 | { |
||
| 81 | return [ |
||
| 82 | 1 | 'geoCode' => $this->getGeoCode(), |
|
| 83 | 1 | 'geoName' => $this->getGeoName(), |
|
| 84 | 1 | 'value' => $this->getValue(), |
|
| 85 | 1 | 'maxValueIndex' => $this->getMaxValueIndex(), |
|
| 86 | 1 | 'hasData' => $this->hasData(), |
|
| 87 | ]; |
||
| 88 | } |
||
| 89 | } |
||
| 90 |