Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 2 | public function render(CellDataInterface $data, AbstractVisualPanel $panel): string |
|
16 | { |
||
17 | 2 | if (!$data->getShieldState()) { |
|
|
|||
18 | 1 | return ''; |
|
19 | } |
||
20 | |||
21 | 1 | return sprintf( |
|
22 | 1 | '<img src="/assets/planets/s1.png" class="lssColoShield" style="z-index: %d; %s" />', |
|
23 | 1 | PanelLayerEnum::COLONY_SHIELD->value, |
|
24 | 1 | $panel->getHeightAndWidth() |
|
25 | 1 | ); |
|
28 |