| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class SystemScanPanelEntry extends SignaturePanelEntry |
||
| 11 | { |
||
| 12 | private StarSystemInterface $system; |
||
| 13 | |||
| 14 | public function __construct( |
||
| 15 | VisualPanelEntryData $data, |
||
| 16 | EncodedMapInterface $encodedMap, |
||
| 17 | StarSystemInterface $system |
||
| 18 | ) { |
||
| 19 | parent::__construct($data, null, $encodedMap); |
||
| 20 | |||
| 21 | $this->system = $system; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function isClickAble(): bool |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getOnClick(): string |
||
| 37 | ); |
||
| 38 | } |
||
| 40 |