@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | /** |
| 58 | 58 | * Create empty groups after round 1. |
| 59 | 59 | * |
| 60 | - * @param $numFighters |
|
| 60 | + * @param integer $numFighters |
|
| 61 | 61 | */ |
| 62 | 62 | protected function pushEmptyGroupsToTree($numFighters) |
| 63 | 63 | { |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | |
| 156 | 156 | /** |
| 157 | 157 | * @param Collection $usersByArea |
| 158 | - * @param $round |
|
| 158 | + * @param integer $round |
|
| 159 | 159 | */ |
| 160 | 160 | public function generateGroupsForRound(Collection $usersByArea, $round) |
| 161 | 161 | { |
@@ -26,7 +26,7 @@ discard block |
||
| 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); |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | //The minus 3 is to ignore the final, semi final and quarter final rounds |
| 141 | 141 | |
| 142 | 142 | for ($i = 0; $i < $noRounds - 3; $i++) { |
| 143 | - $tempRounds[] = 'Last '.$noTeamsInFirstRound; |
|
| 143 | + $tempRounds[] = 'Last ' . $noTeamsInFirstRound; |
|
| 144 | 144 | $noTeamsInFirstRound /= 2; |
| 145 | 145 | } |
| 146 | 146 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | foreach ($roundTitles as $key => $roundTitle) { |
| 163 | 163 | $left = $key * ($this->matchWrapperWidth + $this->roundSpacing - 1); |
| 164 | 164 | |
| 165 | - echo '<div class="round-title" style="left: '.$left.'px;">'.$roundTitle.'</div>'; |
|
| 165 | + echo '<div class="round-title" style="left: ' . $left . 'px;">' . $roundTitle . '</div>'; |
|
| 166 | 166 | } |
| 167 | 167 | echo '</div>'; |
| 168 | 168 | } |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | public function getPlayerList($selected) |
| 176 | 176 | { |
| 177 | 177 | $html = '<select> |
| 178 | - <option'.($selected == '' ? ' selected' : '').'></option>'; |
|
| 178 | + <option'.($selected == '' ? ' selected' : '') . '></option>'; |
|
| 179 | 179 | |
| 180 | 180 | foreach ($this->championship->fighters as $fighter) { |
| 181 | 181 | $html = $this->addOptionToSelect($selected, $fighter, $html); |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | { |
| 236 | 236 | if ($fighter != null) { |
| 237 | 237 | $select = $selected != null && $selected->id == $fighter->id ? ' selected' : ''; |
| 238 | - $html .= '<option'.$select |
|
| 238 | + $html .= '<option' . $select |
|
| 239 | 239 | .' value=' |
| 240 | 240 | .($fighter->id ?? '') |
| 241 | 241 | .'>' |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | use Xoco70\LaravelTournaments\Models\Championship; |
| 5 | 5 | use Xoco70\LaravelTournaments\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 | $fightingAreas = [1, 2, 4, 8]; |
@@ -112,15 +112,15 @@ |
||
| 112 | 112 | { |
| 113 | 113 | $isTeam = $this->group->championship->category->isTeam; |
| 114 | 114 | if ($isTeam) { |
| 115 | - $teamToUpdate = 'team'.$numFighter; |
|
| 115 | + $teamToUpdate = 'team' . $numFighter; |
|
| 116 | 116 | |
| 117 | 117 | return optional($this->$teamToUpdate)->$attr; |
| 118 | 118 | } |
| 119 | - $competitorToUpdate = 'competitor'.$numFighter; |
|
| 119 | + $competitorToUpdate = 'competitor' . $numFighter; |
|
| 120 | 120 | if ($attr == 'name') { |
| 121 | 121 | return $this->$competitorToUpdate == null |
| 122 | 122 | ? '' |
| 123 | - : $this->$competitorToUpdate->user->firstname.' '.$this->$competitorToUpdate->user->lastname; |
|
| 123 | + : $this->$competitorToUpdate->user->firstname . ' ' . $this->$competitorToUpdate->user->lastname; |
|
| 124 | 124 | } elseif ($attr == 'short_id') { |
| 125 | 125 | return optional($this->$competitorToUpdate)->short_id; |
| 126 | 126 | } |
@@ -28,11 +28,11 @@ discard block |
||
| 28 | 28 | { |
| 29 | 29 | parent::boot(); |
| 30 | 30 | |
| 31 | - static::deleting(function ($championship) { |
|
| 31 | + static::deleting(function($championship) { |
|
| 32 | 32 | $championship->competitors()->delete(); |
| 33 | 33 | $championship->settings()->delete(); |
| 34 | 34 | }); |
| 35 | - static::restoring(function ($championship) { |
|
| 35 | + static::restoring(function($championship) { |
|
| 36 | 36 | $championship->competitors()->restore(); |
| 37 | 37 | $championship->settings()->restore(); |
| 38 | 38 | }); |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | $ageCategoryText = $this->category->getAgeString(); |
| 196 | 196 | $gradeText = $this->category->getGradeString(); |
| 197 | 197 | |
| 198 | - return $teamText.' '.$genders[$this->category->gender].' '.$ageCategoryText.' '.$gradeText; |
|
| 198 | + return $teamText . ' ' . $genders[$this->category->gender] . ' ' . $ageCategoryText . ' ' . $gradeText; |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | public function getSettings() |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | * |
| 30 | 30 | * @param $fightersByEntity |
| 31 | 31 | * |
| 32 | - * @return mixed |
|
| 32 | + * @return Collection |
|
| 33 | 33 | */ |
| 34 | 34 | protected function chunkAndShuffle(Collection $fightersByEntity) |
| 35 | 35 | { |
@@ -104,6 +104,9 @@ discard block |
||
| 104 | 104 | $this->generateGroupsForRound($fighters, 1); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | + /** |
|
| 108 | + * @param integer $round |
|
| 109 | + */ |
|
| 107 | 110 | protected function generateGroupsForRound(Collection $fightersByArea, $round) |
| 108 | 111 | { |
| 109 | 112 | $fightersId = $fightersByArea->pluck('id'); |
@@ -57,13 +57,13 @@ |
||
| 57 | 57 | protected static function boot() |
| 58 | 58 | { |
| 59 | 59 | parent::boot(); |
| 60 | - static::deleting(function ($tournament) { |
|
| 60 | + static::deleting(function($tournament) { |
|
| 61 | 61 | foreach ($tournament->championships as $ct) { |
| 62 | 62 | $ct->delete(); |
| 63 | 63 | } |
| 64 | 64 | // $tournament->invites()->delete(); |
| 65 | 65 | }); |
| 66 | - static::restoring(function ($tournament) { |
|
| 66 | + static::restoring(function($tournament) { |
|
| 67 | 67 | foreach ($tournament->championships()->withTrashed()->get() as $ct) { |
| 68 | 68 | $ct->restore(); |
| 69 | 69 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | { |
| 8 | 8 | public function up() |
| 9 | 9 | { |
| 10 | - Schema::create('team', function (Blueprint $table) { |
|
| 10 | + Schema::create('team', function(Blueprint $table) { |
|
| 11 | 11 | $table->increments('id'); |
| 12 | 12 | $table->integer('short_id')->unsigned()->nullable(); |
| 13 | 13 | $table->string('name'); |
@@ -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(); |