Test Failed
Branch master (2e22fb)
by Julien
03:26
created
src/models/FightersGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
     /**
66 66
      * @param Collection $fightersGroup
67
-     * @param $settings
67
+     * @param ChampionshipSettings $settings
68 68
      */
69 69
     public static function generateFights(Collection $fightersGroup, $settings, Championship $championship = null)
70 70
     {
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -252,8 +252,9 @@  discard block
 block discarded – undo
252 252
     }
253 253
 
254 254
     /**
255
-     * @param $usersByArea
256
-     * @param $area
255
+     * @param Collection $usersByArea
256
+     * @param integer $area
257
+     * @param integer $round
257 258
      *
258 259
      */
259 260
     public function generateGroupsForRound($usersByArea, $area, $round)
@@ -283,7 +284,7 @@  discard block
 block discarded – undo
283 284
     /**
284 285
      * @param $fighters
285 286
      * @param $area
286
-     * @param $order
287
+     * @param integer $order
287 288
      * @param $round
288 289
      * @return FightersGroup
289 290
      */
@@ -351,6 +352,9 @@  discard block
 block discarded – undo
351 352
             : new Competitor();
352 353
     }
353 354
 
355
+    /**
356
+     * @param integer $groupSize
357
+     */
354 358
     public function createByeGroup($groupSize): Collection
355 359
     {
356 360
         $byeFighter = $this->createByeFighter();
Please login to merge, or discard this patch.