@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | |
89 | 89 | /** |
90 | 90 | * Save a Fight. |
91 | - * @param $rounds |
|
91 | + * @param Collection $rounds |
|
92 | 92 | * @param int $numRound |
93 | 93 | */ |
94 | 94 | public static function savePreliminaryFightRound($rounds, $numRound = 1) |
@@ -156,6 +156,9 @@ discard block |
||
156 | 156 | // } |
157 | 157 | // } |
158 | 158 | |
159 | + /** |
|
160 | + * @param Collection $rounds |
|
161 | + */ |
|
159 | 162 | public static function saveRoundRobinFights(Championship $championship, $rounds) |
160 | 163 | { |
161 | 164 |
@@ -103,9 +103,9 @@ discard block |
||
103 | 103 | $fighter2 = isset($round->teams[1]) ? $round->teams[1] : null; |
104 | 104 | $fighter3 = isset($round->teams[2]) ? $round->teams[2] : null; |
105 | 105 | } else { |
106 | - $fighter1 = isset($round->competitors[0]) ? $round->competitors[0] : null; |
|
107 | - $fighter2 = isset($round->competitors[1]) ? $round->competitors[1] : null; |
|
108 | - $fighter3 = isset($round->competitors[2]) ? $round->competitors[2] : null; |
|
106 | + $fighter1 = isset($round->competitors[0]) ? $round->competitors[0] : null; |
|
107 | + $fighter2 = isset($round->competitors[1]) ? $round->competitors[1] : null; |
|
108 | + $fighter3 = isset($round->competitors[2]) ? $round->competitors[2] : null; |
|
109 | 109 | } |
110 | 110 | switch ($numRound) { |
111 | 111 | case 1: |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | |
165 | 165 | $fighters = self::getActorsToFights($championship, $round2); |
166 | 166 | |
167 | - $away = $fighters->splice(sizeof($fighters) / 2); // 2 |
|
167 | + $away = $fighters->splice(sizeof($fighters) / 2); // 2 |
|
168 | 168 | |
169 | 169 | $home = $fighters; // 1 |
170 | 170 |
@@ -196,7 +196,7 @@ |
||
196 | 196 | private function getTreeSize($fighterCount, $groupSize) |
197 | 197 | { |
198 | 198 | $square = collect([1, 2, 4, 8, 16, 32, 64]); |
199 | - $squareMultiplied = $square->map(function ($item, $key) use ($groupSize) { |
|
199 | + $squareMultiplied = $square->map(function($item, $key) use ($groupSize) { |
|
200 | 200 | return $item * $groupSize; |
201 | 201 | }); |
202 | 202 |