@@ -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 | } |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | $prefix = "singleElimination"; |
3 | -if ($championship->hasPreliminary() && $numRound ==1){ |
|
3 | +if ($championship->hasPreliminary() && $numRound == 1) { |
|
4 | 4 | $prefix = "preliminary"; |
5 | 5 | } |
6 | -$className = $prefix."_select"; |
|
7 | -$selectName = $prefix."_fighters[]"; |
|
6 | +$className = $prefix . "_select"; |
|
7 | +$selectName = $prefix . "_fighters[]"; |
|
8 | 8 | ?> |
9 | 9 | <select name="{{ $selectName }}" class={{$className}}> |
10 | 10 | <option {{ $selected == '' ? ' selected' : '' }} ></option> |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $this->groupsByRound = $groupsByRound; |
27 | 27 | $this->hasPreliminary = $hasPreliminary; |
28 | 28 | |
29 | - $this->firstRoundName = $groupsByRound->first()->map(function ($item) use ($championship) { |
|
29 | + $this->firstRoundName = $groupsByRound->first()->map(function($item) use ($championship) { |
|
30 | 30 | $fighters = $item->getFightersWithBye(); |
31 | 31 | $fighter1 = $fighters->get(0); |
32 | 32 | $fighter2 = $fighters->get(1); |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | //The minus 3 is to ignore the final, semi final and quarter final rounds |
128 | 128 | |
129 | 129 | for ($i = 0; $i < $noRounds - 3; $i++) { |
130 | - $tempRounds[] = 'Last '.$noTeamsInFirstRound; |
|
130 | + $tempRounds[] = 'Last ' . $noTeamsInFirstRound; |
|
131 | 131 | $noTeamsInFirstRound /= 2; |
132 | 132 | } |
133 | 133 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | foreach ($roundTitles as $key => $roundTitle) { |
140 | 140 | $left = $key * ($this->matchWrapperWidth + $this->roundSpacing - 1); |
141 | 141 | |
142 | - echo '<div class="round-title" style="left: '.$left.'px;">'.$roundTitle.'</div>'; |
|
142 | + echo '<div class="round-title" style="left: ' . $left . 'px;">' . $roundTitle . '</div>'; |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | echo '</div>'; |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | public function getPlayerList($selected) |
154 | 154 | { |
155 | 155 | $html = '<select> |
156 | - <option'.($selected == '' ? ' selected' : '').'></option>'; |
|
156 | + <option'.($selected == '' ? ' selected' : '') . '></option>'; |
|
157 | 157 | |
158 | 158 | foreach ($this->championship->fighters as $fighter) { |
159 | 159 | $html = $this->addOptionToSelect($selected, $fighter, $html); |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | { |
208 | 208 | if ($fighter != null) { |
209 | 209 | $select = $selected != null && $selected->id == $fighter->id ? ' selected' : ''; |
210 | - $html .= '<option'.$select |
|
210 | + $html .= '<option' . $select |
|
211 | 211 | .' value=' |
212 | 212 | .($fighter->id ?? '') |
213 | 213 | .'>' |