| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function getJSONObject( string $defText = '', string $defTitle = '' ): array { |
||
| 37 | $json = parent::getJSONObject( $defText, $defTitle ); |
||
| 38 | |||
| 39 | $json['onlyVisibleOnHover'] = $this->onlyVisibleOnHover; |
||
| 40 | $json['fillColor'] = $this->fillColor; |
||
| 41 | $json['fillOpacity'] = $this->fillOpacity; |
||
| 42 | |||
| 43 | return $json; |
||
| 44 | } |
||
| 45 | |||
| 47 |