Completed
Push — master ( 55661d...969583 )
by Julien
06:36
created
src/models/Championship.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
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
         });
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      */
157 157
     public function fights()
158 158
     {
159
-        return $this->hasManyThrough(Fight::class, FightersGroup::class)->orderBy('id','asc');
159
+        return $this->hasManyThrough(Fight::class, FightersGroup::class)->orderBy('id', 'asc');
160 160
     }
161 161
 
162 162
     /**
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
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()
Please login to merge, or discard this patch.