@@ -19,6 +19,9 @@ discard block |
||
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 |
||
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) |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | /** |
88 | 88 | * Save a Fight. |
89 | - * @param $rounds |
|
89 | + * @param \Illuminate\Support\Collection $rounds |
|
90 | 90 | * @param int $numRound |
91 | 91 | */ |
92 | 92 | public static function savePreliminaryFightRound($rounds, $numRound = 1) |
@@ -154,6 +154,9 @@ discard block |
||
154 | 154 | // } |
155 | 155 | // } |
156 | 156 | |
157 | + /** |
|
158 | + * @param \Illuminate\Support\Collection $rounds |
|
159 | + */ |
|
157 | 160 | public static function saveRoundRobinFights(Championship $championship, $rounds) |
158 | 161 | { |
159 | 162 |
@@ -62,7 +62,7 @@ |
||
62 | 62 | |
63 | 63 | |
64 | 64 | /** |
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) |