Completed
Push — master ( 135c66...7540e3 )
by Julien
06:01
created
src/models/Fight.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,15 +111,15 @@
 block discarded – undo
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 optional($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 optional($this->$competitorToUpdate)->short_id;
125 125
         }
Please login to merge, or discard this patch.