@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | $fighter1 = $item->team1 != null ? $item->team1->name : "Bye"; |
6 | 6 | $fighter2 = $item->team2 != null ? $item->team2->name : "Bye"; |
7 | - }else{ |
|
7 | + } else{ |
|
8 | 8 | $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye"; |
9 | 9 | $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye"; |
10 | 10 | } |
@@ -149,8 +149,9 @@ |
||
149 | 149 | { |
150 | 150 | |
151 | 151 | |
152 | - if ($this->settings != null && $this->settings->alias != null && $this->settings->alias != '') |
|
153 | - return $this->settings->alias; |
|
152 | + if ($this->settings != null && $this->settings->alias != null && $this->settings->alias != '') { |
|
153 | + return $this->settings->alias; |
|
154 | + } |
|
154 | 155 | |
155 | 156 | $genders = [ |
156 | 157 | 'M' => trans('categories.male'), |
@@ -121,7 +121,9 @@ |
||
121 | 121 | } |
122 | 122 | |
123 | 123 | //If there's already a match in the match array, then that means the next round is round 2, so increase the round number |
124 | - if (count($this->brackets)) $roundNumber++; |
|
124 | + if (count($this->brackets)) { |
|
125 | + $roundNumber++; |
|
126 | + } |
|
125 | 127 | |
126 | 128 | //Create the first full round of teams, some may be blank if waiting on the results of a previous round |
127 | 129 | for ($i = 0; $i < count($matches); $i++) { |