Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
11 | 29 | public function buildOutput( MappingService $service, MapData $mapData ): MapOutput { |
|
12 | 29 | return new MapOutput( |
|
13 | 29 | $this->buildMapHtml( $service, $mapData ), |
|
14 | 29 | $service->getResourceModules( $mapData->getParameters() ), |
|
15 | 29 | $service->getDependencyHtml( $mapData->getParameters() ) |
|
16 | ); |
||
17 | } |
||
18 | |||
30 |