Passed
Branch bigRefactor (c260a1)
by Julien
34:53
created
src/models/Tournament.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,13 +56,13 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
database/migrations/2015_12_23_025811_create_ChampionshipSettings_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
database/migrations/2017_02_12_000437_create_FightersGroup_Team_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
migrations/2017_02_12_000428_create_FightersGroup_Competitor_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/models/Championship.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,8 +157,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
database/migrations/2017_03_15_000437_create_Competitor_Team_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('competitor_team', function (Blueprint $table) {
16
+        Schema::create('competitor_team', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('team_id')->unsigned()->nullable()->index();
19 19
             $table->integer('competitor_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/models/FighterGroupTeam.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
     public $timestamps = true;
12 12
 
13 13
 
14
-    public function group(){
14
+    public function group() {
15 15
         return $this->belongsTo(FightersGroup::class);
16 16
     }
17 17
 
18
-    public function team(){
18
+    public function team() {
19 19
         return $this->belongsTo(Team::class);
20 20
     }
21 21
 }
22 22
\ No newline at end of file
Please login to merge, or discard this patch.
src/models/FighterGroupCompetitor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
12 12
 
13 13
 
14 14
 
15
-    public function group(){
15
+    public function group() {
16 16
         return $this->belongsTo(FightersGroup::class);
17 17
     }
18 18
 
19
-    public function competitor(){
19
+    public function competitor() {
20 20
         return $this->belongsTo(Competitor::class);
21 21
     }
22 22
 }
23 23
\ No newline at end of file
Please login to merge, or discard this patch.
database/migrations/2016_95_04_171759_create_Team_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.