@@ -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;"> |
@@ -3,7 +3,9 @@ |
||
| 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) { |
|
| 7 | + dump(\App\Bracket::getTopFight($numRound, $numFight),$topOffset); |
|
| 8 | +} |
|
| 7 | 9 | ?> |
| 8 | 10 | |
| 9 | 11 | <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 | ?> |
@@ -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; |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | use Xoco70\KendoTournaments\Models\Team; |
| 4 | -$factory->define(Team::class, function (Faker\Generator $faker) { |
|
| 4 | +$factory->define(Team::class, function(Faker\Generator $faker) { |
|
| 5 | 5 | |
| 6 | 6 | return [ |
| 7 | 7 | 'name' => $faker->name, |
@@ -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('firstname'); |
@@ -392,7 +392,9 @@ |
||
| 392 | 392 | { |
| 393 | 393 | foreach ($groupsByRound as $keyGroup => $group) { |
| 394 | 394 | $parentGroup = $group->parent; |
| 395 | - if ($parentGroup == null) break; |
|
| 395 | + if ($parentGroup == null) { |
|
| 396 | + break; |
|
| 397 | + } |
|
| 396 | 398 | $parentFight = $parentGroup->fights->get(0); |
| 397 | 399 | |
| 398 | 400 | // determine whether c1 or c2 must be updated |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | private function getMaxFightersByEntity($userGroups): int |
| 81 | 81 | { |
| 82 | 82 | return $userGroups |
| 83 | - ->sortByDesc(function ($group) { |
|
| 83 | + ->sortByDesc(function($group) { |
|
| 84 | 84 | return $group->count(); |
| 85 | 85 | }) |
| 86 | 86 | ->first() |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | protected function getTreeSize($fighterCount, $groupSize) |
| 119 | 119 | { |
| 120 | 120 | $squareMultiplied = collect([1, 2, 4, 8, 16, 32, 64]) |
| 121 | - ->map(function ($item) use ($groupSize) { |
|
| 121 | + ->map(function($item) use ($groupSize) { |
|
| 122 | 122 | return $item * $groupSize; |
| 123 | 123 | }); // [4, 8, 16, 32, 64,...] |
| 124 | 124 | |
@@ -305,7 +305,7 @@ discard block |
||
| 305 | 305 | throw new TreeGenerationException(trans('msg.min_competitor_required', ['number' => config('kendo-tournaments.MIN_COMPETITORS_X_AREA')])); |
| 306 | 306 | } |
| 307 | 307 | |
| 308 | - if ($this->settings->hasPreliminary && $fighters->count() / ($this->settings->preliminaryGroupSize * $areas) < 1 ) { |
|
| 308 | + if ($this->settings->hasPreliminary && $fighters->count() / ($this->settings->preliminaryGroupSize * $areas) < 1) { |
|
| 309 | 309 | throw new TreeGenerationException(trans('msg.min_competitor_required', ['number' => config('kendo-tournaments.MIN_COMPETITORS_X_AREA')])); |
| 310 | 310 | } |
| 311 | 311 | |
@@ -180,7 +180,7 @@ |
||
| 180 | 180 | public function hasDeterminedParent() |
| 181 | 181 | { |
| 182 | 182 | // There is more than 1 fight, should be Preliminary |
| 183 | - if (sizeof($this->fighters()) > 1){ |
|
| 183 | + if (sizeof($this->fighters()) > 1) { |
|
| 184 | 184 | return false; |
| 185 | 185 | } |
| 186 | 186 | foreach ($this->children as $child) { |
@@ -184,7 +184,9 @@ |
||
| 184 | 184 | return false; |
| 185 | 185 | } |
| 186 | 186 | foreach ($this->children as $child) { |
| 187 | - if (sizeof($child->fighters()) > 1) return false; |
|
| 187 | + if (sizeof($child->fighters()) > 1) { |
|
| 188 | + return false; |
|
| 189 | + } |
|
| 188 | 190 | } |
| 189 | 191 | return true; |
| 190 | 192 | |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | $this->groupsByRound = $groupsByRound; |
| 27 | 27 | $this->hasPreliminary = $hasPreliminary; |
| 28 | 28 | |
| 29 | - $this->firstRoundName = $groupsByRound->first()->map(function ($item) use ($championship) { |
|
| 29 | + $this->firstRoundName = $groupsByRound->first()->map(function($item) use ($championship) { |
|
| 30 | 30 | $fighters = $item->getFightersWithBye(); |
| 31 | 31 | $fighter1 = $fighters->get(0); |
| 32 | 32 | $fighter2 = $fighters->get(1); |
@@ -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 = Cat::all()->pluck('id')->toArray(); |
| 11 | 11 | |