@@ -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(); |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | |
| 71 | 71 | // Delete previous fight for this championship |
| 72 | 72 | |
| 73 | - $arrRoundsId = $rounds->map(function ($value, $key) { |
|
| 73 | + $arrRoundsId = $rounds->map(function($value, $key) { |
|
| 74 | 74 | return $value->id; |
| 75 | 75 | })->toArray(); |
| 76 | 76 | Fight::destroy($arrRoundsId); |
@@ -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 | |
@@ -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 | |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | $fighter1 = $item->team1 != null ? $item->team1->name : "Bye"; |
| 6 | 6 | $fighter2 = $item->team2 != null ? $item->team2->name : "Bye"; |
| 7 | - }else{ |
|
| 7 | + } else{ |
|
| 8 | 8 | $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye"; |
| 9 | 9 | $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye"; |
| 10 | 10 | } |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | use Xoco70\KendoTournaments\TreeGen\DirectEliminationTreeGen; |
| 3 | 3 | |
| 4 | -$directEliminationTree = $championship->rounds->map(function ($item, $key) use ($championship) { |
|
| 5 | - if ($championship->category->isTeam()){ |
|
| 4 | +$directEliminationTree = $championship->rounds->map(function($item, $key) use ($championship) { |
|
| 5 | + if ($championship->category->isTeam()) { |
|
| 6 | 6 | |
| 7 | 7 | $fighter1 = $item->team1 != null ? $item->team1->name : "Bye"; |
| 8 | 8 | $fighter2 = $item->team2 != null ? $item->team2->name : "Bye"; |
| 9 | - }else{ |
|
| 9 | + } else { |
|
| 10 | 10 | $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye"; |
| 11 | 11 | $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye"; |
| 12 | 12 | } |
@@ -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 [ |