Test Failed
Push — master ( 2dcdef...5f4570 )
by Julien
03:01
created
src/models/Fight.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -152,6 +152,9 @@
 block discarded – undo
152 152
 //        }
153 153
 //    }
154 154
 
155
+    /**
156
+     * @param Collection $rounds
157
+     */
155 158
     public static function saveRoundRobinFights(Championship $championship, $rounds)
156 159
     {
157 160
 
Please login to merge, or discard this patch.
src/models/Round.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * @param Collection $rounds
65
-     * @param $settings
65
+     * @param ChampionshipSettings $settings
66 66
      * @param Championship $championship
67 67
      */
68 68
     public static function generateFights(Collection $rounds, $settings, Championship $championship = null)
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@  discard block
 block discarded – undo
19 19
     public $championship, $settings;
20 20
 
21 21
 
22
+    /**
23
+     * @param \Xoco70\KendoTournaments\Models\ChampionshipSettings $settings
24
+     */
22 25
     public function __construct(Championship $championship, $groupBy, $settings)
23 26
     {
24 27
         $this->championship = $championship;
@@ -242,7 +245,7 @@  discard block
 block discarded – undo
242 245
 
243 246
     /**
244 247
      * @param $fighterGroups
245
-     * @param $max
248
+     * @param integer $max
246 249
      * @return Collection
247 250
      */
248 251
     private function repart($fighterGroups, $max)
Please login to merge, or discard this patch.