@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | private function getMaxFightersByEntity($userGroups): int |
73 | 73 | { |
74 | 74 | return $userGroups |
75 | - ->sortByDesc(function ($group) { |
|
75 | + ->sortByDesc(function($group) { |
|
76 | 76 | return $group->count(); |
77 | 77 | }) |
78 | 78 | ->first() |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | protected function getTreeSize($fighterCount, $groupSize) |
114 | 114 | { |
115 | 115 | $squareMultiplied = collect([1, 2, 4, 8, 16, 32, 64]) |
116 | - ->map(function ($item) use ($groupSize) { |
|
116 | + ->map(function($item) use ($groupSize) { |
|
117 | 117 | return $item * $groupSize; |
118 | 118 | }); // [4, 8, 16, 32, 64,...] |
119 | 119 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | $sizeGroupBy = count($byeGroup); |
172 | 172 | |
173 | 173 | $frequency = $sizeGroupBy != 0 |
174 | - ? (int) floor($sizeFighters / $sizeGroupBy) |
|
174 | + ? (int)floor($sizeFighters / $sizeGroupBy) |
|
175 | 175 | : -1; |
176 | 176 | |
177 | 177 | // Create Copy of $competitors |