@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('category', function (Blueprint $table) { |
|
15 | + Schema::create('category', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('gender')->nullable(); |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $table->engine = 'InnoDB'; |
29 | 29 | }); |
30 | 30 | |
31 | - Schema::create('championship', function (Blueprint $table) { |
|
31 | + Schema::create('championship', function(Blueprint $table) { |
|
32 | 32 | $table->increments('id'); |
33 | 33 | $table->integer('tournament_id')->unsigned()->index(); |
34 | 34 | $table->integer('category_id')->unsigned()->index(); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | $table->engine = 'InnoDB'; |
51 | 51 | }); |
52 | 52 | |
53 | - Schema::create('competitor', function (Blueprint $table) { |
|
53 | + Schema::create('competitor', function(Blueprint $table) { |
|
54 | 54 | $table->increments('id'); |
55 | 55 | $table->integer('short_id')->unsigned()->nullable(); |
56 | 56 | $table->integer('championship_id')->unsigned()->index(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('fighters_groups', function (Blueprint $table) { |
|
16 | + Schema::create('fighters_groups', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->tinyInteger('short_id')->unsigned()->nullable(); |
19 | 19 | $table->integer('championship_id')->unsigned()->index(); |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | private function getMaxFightersByEntity($userGroups): int |
57 | 57 | { |
58 | 58 | return $userGroups |
59 | - ->sortByDesc(function ($group) { |
|
59 | + ->sortByDesc(function($group) { |
|
60 | 60 | return $group->count(); |
61 | 61 | }) |
62 | 62 | ->first() |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | protected function getTreeSize($fighterCount, $groupSize) |
93 | 93 | { |
94 | 94 | $square = collect([1, 2, 4, 8, 16, 32, 64]); |
95 | - $squareMultiplied = $square->map(function ($item, $key) use ($groupSize) { |
|
95 | + $squareMultiplied = $square->map(function($item, $key) use ($groupSize) { |
|
96 | 96 | return $item * $groupSize; |
97 | 97 | }); |
98 | 98 |