@@ -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() |
@@ -111,15 +111,15 @@ |
||
| 111 | 111 | { |
| 112 | 112 | $isTeam = $this->group->championship->category->isTeam; |
| 113 | 113 | if ($isTeam) { |
| 114 | - $teamToUpdate = 'team'.$numFighter; |
|
| 114 | + $teamToUpdate = 'team' . $numFighter; |
|
| 115 | 115 | |
| 116 | 116 | return $this->$teamToUpdate == null ? '' : $this->$teamToUpdate->$attr; |
| 117 | 117 | } |
| 118 | - $competitorToUpdate = 'competitor'.$numFighter; |
|
| 118 | + $competitorToUpdate = 'competitor' . $numFighter; |
|
| 119 | 119 | if ($attr == 'name') { |
| 120 | 120 | return $this->$competitorToUpdate == null |
| 121 | 121 | ? 'BYE' |
| 122 | - : $this->$competitorToUpdate->user->firstname.' '.$this->$competitorToUpdate->user->lastname; |
|
| 122 | + : $this->$competitorToUpdate->user->firstname . ' ' . $this->$competitorToUpdate->user->lastname; |
|
| 123 | 123 | } elseif ($attr == 'short_id') { |
| 124 | 124 | return $this->$competitorToUpdate == null ? '' : $this->$competitorToUpdate->short_id; |
| 125 | 125 | } |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | /** |
| 49 | 49 | * Create empty groups for direct Elimination Tree. |
| 50 | 50 | * |
| 51 | - * @param $numFighters |
|
| 51 | + * @param integer $numFighters |
|
| 52 | 52 | */ |
| 53 | 53 | protected function pushEmptyGroupsToTree($numFighters) |
| 54 | 54 | { |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | /** |
| 145 | 145 | * @param Collection $usersByArea |
| 146 | - * @param $round |
|
| 146 | + * @param integer $round |
|
| 147 | 147 | */ |
| 148 | 148 | public function generateGroupsForRound(Collection $usersByArea, $round) |
| 149 | 149 | { |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | private function getMaxFightersByEntity($userGroups): int |
| 77 | 77 | { |
| 78 | 78 | return $userGroups |
| 79 | - ->sortByDesc(function ($group) { |
|
| 79 | + ->sortByDesc(function($group) { |
|
| 80 | 80 | return $group->count(); |
| 81 | 81 | }) |
| 82 | 82 | ->first() |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | protected function getTreeSize($fighterCount, $groupSize) |
| 115 | 115 | { |
| 116 | 116 | $squareMultiplied = collect([1, 2, 4, 8, 16, 32, 64]) |
| 117 | - ->map(function ($item) use ($groupSize) { |
|
| 117 | + ->map(function($item) use ($groupSize) { |
|
| 118 | 118 | return $item * $groupSize; |
| 119 | 119 | }); // [4, 8, 16, 32, 64,...] |
| 120 | 120 | |
@@ -16,18 +16,18 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | public function boot(Router $router) |
| 18 | 18 | { |
| 19 | - $viewPath = __DIR__.'/../resources/views'; |
|
| 19 | + $viewPath = __DIR__ . '/../resources/views'; |
|
| 20 | 20 | $this->loadViewsFrom($viewPath, 'laravel-tournaments'); |
| 21 | 21 | |
| 22 | - $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); |
|
| 23 | - $this->loadTranslationsFrom(__DIR__.'/../translations', 'laravel-tournaments'); |
|
| 22 | + $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); |
|
| 23 | + $this->loadTranslationsFrom(__DIR__ . '/../translations', 'laravel-tournaments'); |
|
| 24 | 24 | |
| 25 | - $this->publishes([__DIR__.'/../database/migrations' => $this->app->databasePath().'/migrations'], 'laravel-tournaments'); |
|
| 26 | - $this->publishes([__DIR__.'/../database/seeds' => $this->app->databasePath().'/seeds'], 'laravel-tournaments'); |
|
| 27 | - $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'laravel-tournaments'); |
|
| 28 | - $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments'); |
|
| 25 | + $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'laravel-tournaments'); |
|
| 26 | + $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'laravel-tournaments'); |
|
| 27 | + $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'laravel-tournaments'); |
|
| 28 | + $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments'); |
|
| 29 | 29 | |
| 30 | - $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function ($router) { |
|
| 30 | + $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function($router) { |
|
| 31 | 31 | $router->get('/', 'Xoco70\LaravelTournaments\TreeController@index')->name('tree.index'); |
| 32 | 32 | $router->post('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@store')->name('tree.store'); |
| 33 | 33 | $router->put('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@update')->name('tree.update'); |