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