| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public static function getModuleStats(Configurator $configurator, array $moduleStats): array |
||
| 32 | { |
||
| 33 | if (0 < \count($configurator->moduleStats)) { |
||
| 34 | foreach (\array_keys($configurator->moduleStats) as $i) { |
||
| 35 | $moduleStats[$i] = $configurator->moduleStats[$i]; |
||
| 36 | } |
||
| 37 | } |
||
| 38 | |||
| 39 | return $moduleStats; |
||
| 40 | } |
||
| 42 |