@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | private function getMaxFightersByEntity($userGroups): int |
73 | 73 | { |
74 | 74 | return $userGroups |
75 | - ->sortByDesc(function ($group) { |
|
75 | + ->sortByDesc(function($group) { |
|
76 | 76 | return $group->count(); |
77 | 77 | }) |
78 | 78 | ->first() |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | protected function getTreeSize($fighterCount, $groupSize) |
114 | 114 | { |
115 | 115 | $squareMultiplied = collect([1, 2, 4, 8, 16, 32, 64]) |
116 | - ->map(function ($item) use ($groupSize) { |
|
116 | + ->map(function($item) use ($groupSize) { |
|
117 | 117 | return $item * $groupSize; |
118 | 118 | }); // [4, 8, 16, 32, 64,...] |
119 | 119 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | $sizeGroupBy = count($byeGroup); |
172 | 172 | |
173 | 173 | $frequency = $sizeGroupBy != 0 |
174 | - ? (int) floor($sizeFighters / $sizeGroupBy) |
|
174 | + ? (int)floor($sizeFighters / $sizeGroupBy) |
|
175 | 175 | : -1; |
176 | 176 | |
177 | 177 | // Create Copy of $competitors |
@@ -22,8 +22,14 @@ discard block |
||
22 | 22 | abstract protected function generateFights(); |
23 | 23 | |
24 | 24 | |
25 | + /** |
|
26 | + * @param string|null $fighterToUpdate |
|
27 | + */ |
|
25 | 28 | abstract protected function addFighterToGroup(FightersGroup $group, $fighter, $fighterToUpdate); |
26 | 29 | |
30 | + /** |
|
31 | + * @return Collection |
|
32 | + */ |
|
27 | 33 | abstract protected function getByeGroup($fighters); |
28 | 34 | |
29 | 35 | abstract protected function getNumRounds($fightersCount); |
@@ -61,7 +67,7 @@ discard block |
||
61 | 67 | /** |
62 | 68 | * Get the biggest entity group. |
63 | 69 | * |
64 | - * @param $userGroups |
|
70 | + * @param Collection $userGroups |
|
65 | 71 | * |
66 | 72 | * @return int |
67 | 73 | */ |
@@ -130,7 +136,7 @@ discard block |
||
130 | 136 | /** |
131 | 137 | * Repart BYE in the tree,. |
132 | 138 | * |
133 | - * @param $fighterGroups |
|
139 | + * @param Collection $fighterGroups |
|
134 | 140 | * @param int $max |
135 | 141 | * |
136 | 142 | * @return Collection |
@@ -288,7 +294,7 @@ discard block |
||
288 | 294 | /** |
289 | 295 | * Attach a parent to every child for nestedSet Navigation. |
290 | 296 | * |
291 | - * @param $numFightersElim |
|
297 | + * @param integer $numFightersElim |
|
292 | 298 | */ |
293 | 299 | protected function addParentToChildren($numFightersElim) |
294 | 300 | { |
@@ -312,8 +318,8 @@ discard block |
||
312 | 318 | |
313 | 319 | /** |
314 | 320 | * @param Collection $fighters |
315 | - * @param $frequency |
|
316 | - * @param $sizeGroupBy |
|
321 | + * @param integer $frequency |
|
322 | + * @param integer $sizeGroupBy |
|
317 | 323 | * @param $bye |
318 | 324 | * |
319 | 325 | * @return Collection |
@@ -338,8 +344,8 @@ discard block |
||
338 | 344 | /** |
339 | 345 | * @param $frequency |
340 | 346 | * @param $sizeGroupBy |
341 | - * @param $count |
|
342 | - * @param $byeCount |
|
347 | + * @param integer $count |
|
348 | + * @param integer $byeCount |
|
343 | 349 | * |
344 | 350 | * @return bool |
345 | 351 | */ |
@@ -81,10 +81,10 @@ |
||
81 | 81 | { |
82 | 82 | if ($isTeam) { |
83 | 83 | $championship = Championship::find(2); |
84 | - factory(Team::class, (int) $numFighters)->create(['championship_id' => $championship->id]); |
|
84 | + factory(Team::class, (int)$numFighters)->create(['championship_id' => $championship->id]); |
|
85 | 85 | } else { |
86 | 86 | $championship = Championship::find(1); |
87 | - $users = factory(User::class, (int) $numFighters)->create(); |
|
87 | + $users = factory(User::class, (int)$numFighters)->create(); |
|
88 | 88 | foreach ($users as $user) { |
89 | 89 | factory(Competitor::class)->create( |
90 | 90 | ['championship_id' => $championship->id, |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @param Request $request |
39 | 39 | * |
40 | - * @return \Illuminate\Http\Response|string |
|
40 | + * @return \Illuminate\Http\RedirectResponse |
|
41 | 41 | */ |
42 | 42 | public function store(Request $request, $championshipId) |
43 | 43 | { |
@@ -137,6 +137,9 @@ discard block |
||
137 | 137 | return back(); |
138 | 138 | } |
139 | 139 | |
140 | + /** |
|
141 | + * @param integer $numFighter |
|
142 | + */ |
|
140 | 143 | public function getWinnerId($fighters, $scores, $numFighter) |
141 | 144 | { |
142 | 145 | return $scores[$numFighter] != null ? $fighters[$numFighter] : null; |
@@ -16,18 +16,18 @@ |
||
16 | 16 | */ |
17 | 17 | public function boot(Router $router) |
18 | 18 | { |
19 | - $viewPath = __DIR__.'/../resources/views'; |
|
19 | + $viewPath = __DIR__ . '/../resources/views'; |
|
20 | 20 | $this->loadViewsFrom($viewPath, 'laravel-tournaments'); |
21 | 21 | |
22 | - $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); |
|
23 | - $this->loadTranslationsFrom(__DIR__.'/../translations', 'laravel-tournaments'); |
|
22 | + $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); |
|
23 | + $this->loadTranslationsFrom(__DIR__ . '/../translations', 'laravel-tournaments'); |
|
24 | 24 | |
25 | - $this->publishes([__DIR__.'/../database/migrations' => $this->app->databasePath().'/migrations'], 'laravel-tournaments'); |
|
26 | - $this->publishes([__DIR__.'/../database/seeds' => $this->app->databasePath().'/seeds'], 'laravel-tournaments'); |
|
27 | - $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'laravel-tournaments'); |
|
28 | - $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments'); |
|
25 | + $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'laravel-tournaments'); |
|
26 | + $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'laravel-tournaments'); |
|
27 | + $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'laravel-tournaments'); |
|
28 | + $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments'); |
|
29 | 29 | |
30 | - $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function ($router) { |
|
30 | + $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function($router) { |
|
31 | 31 | $router->get('/', 'Xoco70\LaravelTournaments\TreeController@index')->name('tree.index'); |
32 | 32 | $router->post('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@store')->name('tree.store'); |
33 | 33 | $router->put('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@update')->name('tree.update'); |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | $prefix = "singleElimination"; |
3 | -if ($championship->hasPreliminary() && $roundNumber ==1){ |
|
3 | +if ($championship->hasPreliminary() && $roundNumber == 1) { |
|
4 | 4 | $prefix = "preliminary"; |
5 | 5 | } |
6 | -$className = $prefix."_select"; |
|
7 | -$selectName = $prefix."_fighters[]"; |
|
6 | +$className = $prefix . "_select"; |
|
7 | +$selectName = $prefix . "_fighters[]"; |
|
8 | 8 | |
9 | 9 | ?> |
10 | 10 | <!-- r = round, m = match, f = fighter --> |
@@ -41,7 +41,7 @@ |
||
41 | 41 | */ |
42 | 42 | public function getFullName() //TODO Should remove get prefix |
43 | 43 | { |
44 | - return $this->defaultName() ?? $this->user->firstname.' '.$this->user->lastname; |
|
44 | + return $this->defaultName() ?? $this->user->firstname . ' ' . $this->user->lastname; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
@@ -56,13 +56,13 @@ |
||
56 | 56 | protected static function boot() |
57 | 57 | { |
58 | 58 | parent::boot(); |
59 | - static::deleting(function ($tournament) { |
|
59 | + static::deleting(function($tournament) { |
|
60 | 60 | foreach ($tournament->championships as $ct) { |
61 | 61 | $ct->delete(); |
62 | 62 | } |
63 | 63 | $tournament->invites()->delete(); |
64 | 64 | }); |
65 | - static::restoring(function ($tournament) { |
|
65 | + static::restoring(function($tournament) { |
|
66 | 66 | foreach ($tournament->championships()->withTrashed()->get() as $ct) { |
67 | 67 | $ct->restore(); |
68 | 68 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | /** |
58 | 58 | * Create empty groups after round 1. |
59 | 59 | * |
60 | - * @param $numFighters |
|
60 | + * @param integer $numFighters |
|
61 | 61 | */ |
62 | 62 | protected function pushEmptyGroupsToTree($numFighters) |
63 | 63 | { |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | |
156 | 156 | /** |
157 | 157 | * @param Collection $usersByArea |
158 | - * @param $round |
|
158 | + * @param integer $round |
|
159 | 159 | */ |
160 | 160 | public function generateGroupsForRound(Collection $usersByArea, $round) |
161 | 161 | { |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $this->groupsByRound = $groupsByRound; |
27 | 27 | $this->hasPreliminary = $hasPreliminary; |
28 | 28 | |
29 | - $this->firstRoundName = $groupsByRound->first()->map(function ($item) use ($championship) { |
|
29 | + $this->firstRoundName = $groupsByRound->first()->map(function($item) use ($championship) { |
|
30 | 30 | $fighters = $item->getFightersWithBye(); |
31 | 31 | $fighter1 = $fighters->get(0); |
32 | 32 | $fighter2 = $fighters->get(1); |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | //The minus 3 is to ignore the final, semi final and quarter final rounds |
141 | 141 | |
142 | 142 | for ($i = 0; $i < $noRounds - 3; $i++) { |
143 | - $tempRounds[] = 'Last '.$noTeamsInFirstRound; |
|
143 | + $tempRounds[] = 'Last ' . $noTeamsInFirstRound; |
|
144 | 144 | $noTeamsInFirstRound /= 2; |
145 | 145 | } |
146 | 146 | |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | foreach ($roundTitles as $key => $roundTitle) { |
163 | 163 | $left = $key * ($this->matchWrapperWidth + $this->roundSpacing - 1); |
164 | 164 | |
165 | - echo '<div class="round-title" style="left: '.$left.'px;">'.$roundTitle.'</div>'; |
|
165 | + echo '<div class="round-title" style="left: ' . $left . 'px;">' . $roundTitle . '</div>'; |
|
166 | 166 | } |
167 | 167 | echo '</div>'; |
168 | 168 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | public function getPlayerList($selected) |
176 | 176 | { |
177 | 177 | $html = '<select> |
178 | - <option'.($selected == '' ? ' selected' : '').'></option>'; |
|
178 | + <option'.($selected == '' ? ' selected' : '') . '></option>'; |
|
179 | 179 | |
180 | 180 | foreach ($this->championship->fighters as $fighter) { |
181 | 181 | $html = $this->addOptionToSelect($selected, $fighter, $html); |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | { |
236 | 236 | if ($fighter != null) { |
237 | 237 | $select = $selected != null && $selected->id == $fighter->id ? ' selected' : ''; |
238 | - $html .= '<option'.$select |
|
238 | + $html .= '<option' . $select |
|
239 | 239 | .' value=' |
240 | 240 | .($fighter->id ?? '') |
241 | 241 | .'>' |
@@ -4,7 +4,7 @@ |
||
4 | 4 | use Xoco70\LaravelTournaments\Models\Championship; |
5 | 5 | use Xoco70\LaravelTournaments\Models\ChampionshipSettings; |
6 | 6 | |
7 | -$factory->define(ChampionshipSettings::class, function (Faker\Generator $faker) use ($factory) { |
|
7 | +$factory->define(ChampionshipSettings::class, function(Faker\Generator $faker) use ($factory) { |
|
8 | 8 | $tcs = Championship::all()->pluck('id')->toArray(); |
9 | 9 | |
10 | 10 | $fightingAreas = [1, 2, 4, 8]; |