@@ -3,7 +3,9 @@ |
||
3 | 3 | $top = \App\Bracket::getTopFight($numRound, $numFight) + $topOffset; |
4 | 4 | |
5 | 5 | $left = \App\Bracket::getLeftFight($numRound); |
6 | -if ($numRound== 3) dump(\App\Bracket::getTopFight($numRound, $numFight),$topOffset); |
|
6 | +if ($numRound== 3) { |
|
7 | + dump(\App\Bracket::getTopFight($numRound, $numFight),$topOffset); |
|
8 | +} |
|
7 | 9 | ?> |
8 | 10 | |
9 | 11 | <div class="match-wrapper" style="top: {{ $top }}px; left: {{$left}}px; width: 150px;"> |
@@ -41,7 +41,7 @@ |
||
41 | 41 | * |
42 | 42 | * @param Request $request |
43 | 43 | * |
44 | - * @return \Illuminate\Http\Response|string |
|
44 | + * @return \Illuminate\Http\RedirectResponse |
|
45 | 45 | */ |
46 | 46 | public function store(Request $request, $championshipId) |
47 | 47 | { |
@@ -42,7 +42,7 @@ |
||
42 | 42 | * |
43 | 43 | * @param $fightersByEntity |
44 | 44 | * |
45 | - * @return mixed |
|
45 | + * @return Collection |
|
46 | 46 | */ |
47 | 47 | protected function chunkAndShuffle(Collection $fightersByEntity) |
48 | 48 | { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | /** |
49 | 49 | * Create empty groups for direct Elimination Tree. |
50 | 50 | * |
51 | - * @param $numFighters |
|
51 | + * @param integer $numFighters |
|
52 | 52 | */ |
53 | 53 | protected function pushEmptyGroupsToTree($numFighters) |
54 | 54 | { |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | } |
144 | 144 | /** |
145 | 145 | * @param Collection $usersByArea |
146 | - * @param $round |
|
146 | + * @param integer $round |
|
147 | 147 | */ |
148 | 148 | public function generateGroupsForRound(Collection $usersByArea, $round) |
149 | 149 | { |