@@ -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 | $table->Integer('user_id')->unsigned()->index(); |
| 14 | 14 | $table->foreign('user_id') |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('venue', function (Blueprint $table) { |
|
| 15 | + Schema::create('venue', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | 17 | $table->string('venue_name'); |
| 18 | 18 | $table->string('address')->nullable(); |
@@ -23,11 +23,11 @@ |
||
| 23 | 23 | { |
| 24 | 24 | parent::boot(); |
| 25 | 25 | |
| 26 | - static::deleting(function ($championship) { |
|
| 26 | + static::deleting(function($championship) { |
|
| 27 | 27 | $championship->competitors()->delete(); |
| 28 | 28 | $championship->settings()->delete(); |
| 29 | 29 | }); |
| 30 | - static::restoring(function ($championship) { |
|
| 30 | + static::restoring(function($championship) { |
|
| 31 | 31 | $championship->competitors()->restore(); |
| 32 | 32 | $championship->settings()->restore(); |
| 33 | 33 | }); |
@@ -157,8 +157,9 @@ |
||
| 157 | 157 | |
| 158 | 158 | public function buildName() |
| 159 | 159 | { |
| 160 | - if ($this->settings != null && $this->settings->alias != null && $this->settings->alias != '') |
|
| 161 | - return $this->settings->alias; |
|
| 160 | + if ($this->settings != null && $this->settings->alias != null && $this->settings->alias != '') { |
|
| 161 | + return $this->settings->alias; |
|
| 162 | + } |
|
| 162 | 163 | |
| 163 | 164 | if ($this->hasNoCustomSettings()) { |
| 164 | 165 | return $this->category->name; |
@@ -56,13 +56,13 @@ |
||
| 56 | 56 | protected static function boot() |
| 57 | 57 | { |
| 58 | 58 | parent::boot(); |
| 59 | - static::deleting(function ($tournament) { |
|
| 59 | + static::deleting(function($tournament) { |
|
| 60 | 60 | foreach ($tournament->championships as $ct) { |
| 61 | 61 | $ct->delete(); |
| 62 | 62 | } |
| 63 | 63 | $tournament->invites()->delete(); |
| 64 | 64 | }); |
| 65 | - static::restoring(function ($tournament) { |
|
| 65 | + static::restoring(function($tournament) { |
|
| 66 | 66 | foreach ($tournament->championships()->withTrashed()->get() as $ct) { |
| 67 | 67 | $ct->restore(); |
| 68 | 68 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('championship_settings', function (Blueprint $table) { |
|
| 15 | + Schema::create('championship_settings', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | 17 | $table->string('alias')->nullable(); |
| 18 | 18 | $table->integer('championship_id')->unsigned()->unique(); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('fighters_group_team', function (Blueprint $table) { |
|
| 16 | + Schema::create('fighters_group_team', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('team_id')->unsigned()->nullable()->index(); |
| 19 | 19 | $table->integer('fighters_group_id')->unsigned()->index(); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('fighters_group_competitor', function (Blueprint $table) { |
|
| 16 | + Schema::create('fighters_group_competitor', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('competitor_id')->unsigned()->nullable()->index(); |
| 19 | 19 | $table->integer('fighters_group_id')->unsigned()->index(); |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | |
| 72 | 72 | // Delete previous fight for this championship |
| 73 | 73 | |
| 74 | - $arrGroupsId = $fightersGroup->map(function ($value, $key) { |
|
| 74 | + $arrGroupsId = $fightersGroup->map(function($value, $key) { |
|
| 75 | 75 | return $value->id; |
| 76 | 76 | })->toArray(); |
| 77 | 77 | Fight::destroy($arrGroupsId); |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | |
| 65 | 65 | /** |
| 66 | 66 | * @param Collection $fightersGroup |
| 67 | - * @param $settings |
|
| 67 | + * @param ChampionshipSettings $settings |
|
| 68 | 68 | */ |
| 69 | 69 | public static function generateFights(Collection $fightersGroup, $settings, Championship $championship = null) |
| 70 | 70 | { |
@@ -77,11 +77,11 @@ |
||
| 77 | 77 | FightersGroup::generateFights($groups, $settings, $championship); |
| 78 | 78 | } catch (TreeGenerationException $e) { |
| 79 | 79 | redirect()->back() |
| 80 | - ->withErrors([$numFighters ."-".$e->getMessage()]); |
|
| 80 | + ->withErrors([$numFighters . "-" . $e->getMessage()]); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | return redirect()->back() |
| 84 | 84 | ->with('numFighters', $numFighters) |
| 85 | - ->with(['success' , "Success"]); |
|
| 85 | + ->with(['success', "Success"]); |
|
| 86 | 86 | } |
| 87 | 87 | } |