Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class AllianceSubspaceDataProvider extends AbstractSubspaceDataProvider |
||
13 | { |
||
14 | private int $allianceId; |
||
15 | |||
16 | public function __construct( # |
||
17 | int $allianceId, |
||
18 | MapRepositoryInterface $mapRepository, |
||
19 | StarSystemMapRepositoryInterface $starSystemMapRepository |
||
20 | ) { |
||
21 | parent::__construct($mapRepository, $starSystemMapRepository); |
||
22 | $this->allianceId = $allianceId; |
||
23 | } |
||
24 | |||
25 | protected function provideDataForMap(PanelBoundaries $boundaries): array |
||
28 | } |
||
29 | |||
30 | protected function provideDataForSystemMap(PanelBoundaries $boundaries): array |
||
35 |