@@ -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 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 | } |