Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | 2 | public function render(CellDataInterface $data, AbstractVisualPanel $panel): string |
|
28 | { |
||
29 | 2 | return sprintf( |
|
30 | 2 | '<img src="/assets/map/%s" style="z-index: %d; %s opacity:1;" />', |
|
31 | 2 | $this->getMapGraphicPath($data), |
|
32 | 2 | PanelLayerEnum::MAP->value, |
|
33 | 2 | $panel->getHeightAndWidth() |
|
34 | 2 | ); |
|
51 |