| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function pushEmptyGroupsToTree($numFighters) |
||
| 32 | { |
||
| 33 | // We calculate how much rounds we will have |
||
| 34 | $numFightersEliminatory = $numFighters; |
||
| 35 | $numRounds = intval(log($numFightersEliminatory, 2)); |
||
| 36 | $this->pushGroups($numRounds, $numFightersEliminatory, $shuffle = 1); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.