@@ -5,7 +5,7 @@ |
||
5 | 5 | use Xoco70\KendoTournaments\Models\Championship; |
6 | 6 | use Xoco70\KendoTournaments\Models\Tournament; |
7 | 7 | |
8 | -$factory->define(Championship::class, function (Faker\Generator $faker) { |
|
8 | +$factory->define(Championship::class, function(Faker\Generator $faker) { |
|
9 | 9 | $tournaments = Tournament::all()->pluck('id')->toArray(); |
10 | 10 | $categories = Category::all()->pluck('id')->toArray(); |
11 | 11 |
@@ -4,7 +4,7 @@ |
||
4 | 4 | use Xoco70\KendoTournaments\Models\Championship; |
5 | 5 | use Xoco70\KendoTournaments\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 | return [ |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('sessions', function (Blueprint $table) { |
|
16 | + Schema::create('sessions', function(Blueprint $table) { |
|
17 | 17 | $table->string('id')->unique(); |
18 | 18 | $table->integer('user_id')->nullable(); |
19 | 19 | $table->string('ip_address', 45)->nullable(); |
@@ -196,7 +196,7 @@ |
||
196 | 196 | private function getTreeSize($fighterCount, $groupSize) |
197 | 197 | { |
198 | 198 | $square = collect([1, 2, 4, 8, 16, 32, 64]); |
199 | - $squareMultiplied = $square->map(function ($item, $key) use ($groupSize) { |
|
199 | + $squareMultiplied = $square->map(function($item, $key) use ($groupSize) { |
|
200 | 200 | return $item * $groupSize; |
201 | 201 | }); |
202 | 202 |
@@ -240,8 +240,9 @@ discard block |
||
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
243 | - * @param $usersByArea |
|
244 | - * @param $area |
|
243 | + * @param Collection $usersByArea |
|
244 | + * @param integer $area |
|
245 | + * @param integer $round |
|
245 | 246 | * |
246 | 247 | */ |
247 | 248 | public function generateGroupsForRound($usersByArea, $area, $round) |
@@ -335,6 +336,9 @@ discard block |
||
335 | 336 | : new Competitor(); |
336 | 337 | } |
337 | 338 | |
339 | + /** |
|
340 | + * @param integer $groupSize |
|
341 | + */ |
|
338 | 342 | public function createByeGroup($groupSize): Collection |
339 | 343 | { |
340 | 344 | $byeFighter = $this->createByeFighter(); |
@@ -347,7 +351,7 @@ discard block |
||
347 | 351 | |
348 | 352 | /** |
349 | 353 | * @param $fighters |
350 | - * @param $fighterGroups |
|
354 | + * @param Collection $fighterGroups |
|
351 | 355 | * @return Collection |
352 | 356 | */ |
353 | 357 | private function adjustFightersGroupWithByes($fighters, $fighterGroups): Collection |
@@ -385,7 +389,7 @@ discard block |
||
385 | 389 | * @param $roundNumber |
386 | 390 | * @param $numRounds |
387 | 391 | * @param $matchNumber |
388 | - * @param $previousRound |
|
392 | + * @param Collection|null $previousRound |
|
389 | 393 | * @return mixed |
390 | 394 | */ |
391 | 395 | private function getParentGroup($roundNumber, $numRounds = 0, $matchNumber, $previousRound) |
@@ -399,7 +403,7 @@ discard block |
||
399 | 403 | } |
400 | 404 | |
401 | 405 | /** |
402 | - * @param $numRounds |
|
406 | + * @param integer $numRounds |
|
403 | 407 | * @param $numFightersEliminatory |
404 | 408 | */ |
405 | 409 | private function pushGroups($numRounds, $numFightersEliminatory) |
@@ -4,7 +4,7 @@ |
||
4 | 4 | use Xoco70\KendoTournaments\Models\Championship; |
5 | 5 | use Xoco70\KendoTournaments\Models\Competitor; |
6 | 6 | |
7 | -$factory->define(Competitor::class, function (Faker\Generator $faker) { |
|
7 | +$factory->define(Competitor::class, function(Faker\Generator $faker) { |
|
8 | 8 | $tcs = Championship::all()->pluck('id')->toArray(); |
9 | 9 | $users = User::all()->pluck('id')->toArray(); |
10 | 10 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('users', function (Blueprint $table) { |
|
15 | + Schema::create('users', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('email')->unique(); |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | |
4 | -$factory->define(\Illuminate\Foundation\Auth\User::class, function (Faker\Generator $faker) { |
|
4 | +$factory->define(\Illuminate\Foundation\Auth\User::class, function(Faker\Generator $faker) { |
|
5 | 5 | $email = $faker->email; |
6 | 6 | |
7 | 7 | return [ |
@@ -4,7 +4,7 @@ |
||
4 | 4 | use Xoco70\KendoTournaments\Models\Tournament; |
5 | 5 | use Xoco70\KendoTournaments\Models\Venue; |
6 | 6 | |
7 | -$factory->define(Tournament::class, function (Faker\Generator $faker) { |
|
7 | +$factory->define(Tournament::class, function(Faker\Generator $faker) { |
|
8 | 8 | $users = User::all()->pluck('id')->toArray(); |
9 | 9 | if (count($users) == 0) { |
10 | 10 | $user = factory(\Illuminate\Foundation\Auth\User::class)->create(); |
@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | use Xoco70\KendoTournaments\Models\Venue; |
4 | 4 | |
5 | -$factory->define(Venue::class, function (Faker\Generator $faker) { |
|
5 | +$factory->define(Venue::class, function(Faker\Generator $faker) { |
|
6 | 6 | return [ |
7 | 7 | 'venue_name' => $faker->colorName, |
8 | 8 | 'address' => $faker->streetName, |