@@ -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(); |
@@ -1,11 +1,11 @@ |
||
| 1 | 1 | <?php |
| 2 | -$default_top1 =81; |
|
| 3 | -$default_top2 =132; |
|
| 2 | +$default_top1 = 81; |
|
| 3 | +$default_top2 = 132; |
|
| 4 | 4 | |
| 5 | -$top1 = $default_top1 + ($numGroup-1) * 204; |
|
| 6 | -$top2 = $default_top2 + ($numGroup-1) * 204; |
|
| 5 | +$top1 = $default_top1 + ($numGroup - 1) * 204; |
|
| 6 | +$top2 = $default_top2 + ($numGroup - 1) * 204; |
|
| 7 | 7 | |
| 8 | -$top = $default_top1 + ($numGroup-1) * 204; |
|
| 8 | +$top = $default_top1 + ($numGroup - 1) * 204; |
|
| 9 | 9 | |
| 10 | 10 | |
| 11 | 11 | ?> |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | -$default_top1 =30; |
|
| 3 | -$default_top2 =81; |
|
| 2 | +$default_top1 = 30; |
|
| 3 | +$default_top2 = 81; |
|
| 4 | 4 | |
| 5 | -$top1 = $default_top1 + ($numGroup-1) * 204; |
|
| 6 | -$top2 = $default_top2 + ($numGroup-1) * 204; |
|
| 5 | +$top1 = $default_top1 + ($numGroup - 1) * 204; |
|
| 6 | +$top2 = $default_top2 + ($numGroup - 1) * 204; |
|
| 7 | 7 | |
| 8 | 8 | $default_left = 189; |
| 9 | -$left = $default_left * ($numRound-1); |
|
| 9 | +$left = $default_left * ($numRound - 1); |
|
| 10 | 10 | |
| 11 | 11 | |
| 12 | 12 | ?> |
@@ -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 | { |
@@ -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, |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | $prefix = "directElimination"; |
| 3 | -if ($championship->hasPreliminary() && $numRound ==1){ |
|
| 3 | +if ($championship->hasPreliminary() && $numRound == 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 | <select name="{{ $selectName }}" class={{$className}}> |
| 10 | 10 | <option {{ $selected == '' ? ' selected' : '' }} ></option> |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | { |
| 9 | 9 | public function up() |
| 10 | 10 | { |
| 11 | - Schema::create('tournament', function (Blueprint $table) { |
|
| 11 | + Schema::create('tournament', function(Blueprint $table) { |
|
| 12 | 12 | $table->increments('id'); |
| 13 | 13 | //TODO Added ->nullable() to solve FK issue with Sqlite :( |
| 14 | 14 | $table->Integer('user_id')->unsigned()->nullable()->index(); |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | use Xoco70\LaravelTournaments\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, |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | |
| 4 | 4 | use Xoco70\LaravelTournaments\Models\Category as Cat; |
| 5 | 5 | |
| 6 | -$factory->define(Cat::class, function (Faker\Generator $faker) { |
|
| 6 | +$factory->define(Cat::class, function(Faker\Generator $faker) { |
|
| 7 | 7 | $name = ['categories.junior', |
| 8 | 8 | 'categories.junior_team', |
| 9 | 9 | 'categories.men_single', |