| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | private function reloadEps(ShipWrapperInterface $wrapper, int $minimalPercentage): void |
||
| 19 | { |
||
| 20 | $epsSystem = $wrapper->getEpsSystemData(); |
||
| 21 | |||
| 22 | if ( |
||
| 23 | $epsSystem !== null |
||
| 24 | && $epsSystem->getEpsPercentage() < $minimalPercentage |
||
| 25 | ) { |
||
| 26 | $epsSystem->setEps((int)($epsSystem->getMaxEps() * $minimalPercentage / 100))->update(); |
||
| 27 | } |
||
| 42 |