@@ -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(); |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | public static function createOrUpdate(Request $request, Championship $championship): ChampionshipSettings |
| 64 | 64 | { |
| 65 | 65 | $request->request->add(['championship_id' => $championship->id]); |
| 66 | - $arrSettings = $request->except('_token', 'numFighters','isTeam'); |
|
| 66 | + $arrSettings = $request->except('_token', 'numFighters', 'isTeam'); |
|
| 67 | 67 | $settings = static::where(['championship_id' => $championship->id])->first(); |
| 68 | 68 | if ($settings == null) { |
| 69 | 69 | $settings = new self(); |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | $fightingAreas = $setting->fightingAreas; |
| 22 | 22 | $fights = $championship->fights; |
| 23 | 23 | $numFighters = $numFighters ?? 5; |
| 24 | -$isTeam = $isTeam ?? 5;; |
|
| 24 | +$isTeam = $isTeam ?? 5; ; |
|
| 25 | 25 | ?> |
| 26 | 26 | @include('kendo-tournaments::partials.errors') |
| 27 | 27 | |
@@ -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,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | -$topOffset = ($numRound == 1 ? 0 : (pow(2, $numRound-1)-1) * 51); |
|
| 2 | +$topOffset = ($numRound == 1 ? 0 : (pow(2, $numRound - 1) - 1) * 51); |
|
| 3 | 3 | $top = \App\Bracket::getTopFight($numRound, $numFight) + $topOffset; |
| 4 | 4 | |
| 5 | 5 | $left = \App\Bracket::getLeftFight($numRound); |
| 6 | -if ($numRound== 3) dump(\App\Bracket::getTopFight($numRound, $numFight),$topOffset); |
|
| 6 | +if ($numRound == 3) dump(\App\Bracket::getTopFight($numRound, $numFight), $topOffset); |
|
| 7 | 7 | ?> |
| 8 | 8 | |
| 9 | 9 | <div class="match-wrapper" style="top: {{ $top }}px; left: {{$left}}px; width: 150px;"> |
@@ -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 | ?> |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | use Xoco70\KendoTournaments\TreeGen\CreateDirectEliminationTree; |
| 3 | 3 | // Used to regenerate _lft and _rgt |
| 4 | -foreach ($championship->fightersGroups as $group){ |
|
| 4 | +foreach ($championship->fightersGroups as $group) { |
|
| 5 | 5 | $group->fixTree(); |
| 6 | 6 | } |
| 7 | 7 | $directEliminationTree = $championship->fightersGroups->groupBy('round'); |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | $this->championship = $championship; |
| 26 | 26 | $this->names = $names; |
| 27 | 27 | |
| 28 | - $this->firstRoundName = $names->first()->map(function ($item) use ($championship) { |
|
| 28 | + $this->firstRoundName = $names->first()->map(function($item) use ($championship) { |
|
| 29 | 29 | $fighters = $item->getFighters(); |
| 30 | 30 | $fighter1 = $fighters->get(0); |
| 31 | 31 | $fighter2 = $fighters->get(1); |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | |
| 27 | 27 | public function getFullNameAttribute() |
| 28 | 28 | { |
| 29 | - if ($this instanceof Competitor){ |
|
| 29 | + if ($this instanceof Competitor) { |
|
| 30 | 30 | return $this->getFullName(); |
| 31 | 31 | } |
| 32 | 32 | return $this->name; |