| Conditions | 3 |
| Paths | 4 |
| Total Lines | 16 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function request() |
||
| 44 | { |
||
| 45 | $scriptSettings = $this->connection->getModeScriptSettings(); |
||
| 46 | $currentMap = $this->mapStorage->getCurrentMap(); |
||
| 47 | |||
| 48 | $nbLaps = 1; |
||
| 49 | if ($currentMap->lapRace) { |
||
| 50 | $nbLaps = $currentMap->nbLaps; |
||
| 51 | } |
||
| 52 | |||
| 53 | if ($scriptSettings['S_ForceLapsNb'] != -1) { |
||
| 54 | $nbLaps = $scriptSettings['S_ForceLapsNb']; |
||
| 55 | } |
||
| 56 | |||
| 57 | $this->dispatch('set', [$nbLaps]); |
||
| 58 | } |
||
| 59 | } |
||
| 60 |