Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function getJSONObject( string $defText = '', string $defTitle = '' ): array { |
||
14 | $parentArray = parent::getJSONObject( $defText, $defTitle ); |
||
15 | $array = [ |
||
16 | 'fillColor' => $this->hasFillColor() ? $this->getFillColor() : '#FF0000', |
||
17 | 'fillOpacity' => $this->hasFillOpacity() ? $this->getFillOpacity() : '0.5', |
||
18 | ]; |
||
19 | return array_merge( $parentArray, $array ); |
||
20 | } |
||
21 | |||
46 |