Test Failed
Push — master ( 241073...2d5b3a )
by Julien
03:08
created
src/models/Fight.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.