Passed
Push — master ( 27bd2c...340ca4 )
by Julien
02:28
created
src/TreeGen/CreateDirectEliminationTree.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
                 .'>'
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     private function getMaxFightersByEntity($userGroups): int
73 73
     {
74 74
         return $userGroups
75
-            ->sortByDesc(function ($group) {
75
+            ->sortByDesc(function($group) {
76 76
                 return $group->count();
77 77
             })
78 78
             ->first()
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     protected function getTreeSize($fighterCount, $groupSize)
114 114
     {
115 115
         $squareMultiplied = collect([1, 2, 4, 8, 16, 32, 64])
116
-            ->map(function ($item) use ($groupSize) {
116
+            ->map(function($item) use ($groupSize) {
117 117
                 return $item * $groupSize;
118 118
             }); // [4, 8, 16, 32, 64,...]
119 119
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         $sizeGroupBy = count($byeGroup);
172 172
 
173 173
         $frequency = $sizeGroupBy != 0
174
-            ? (int) floor($sizeFighters / $sizeGroupBy)
174
+            ? (int)floor($sizeFighters / $sizeGroupBy)
175 175
             : -1;
176 176
 
177 177
         // Create Copy of $competitors
Please login to merge, or discard this patch.
src/models/Competitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function getFullName() //TODO Should remove get prefix
43 43
     {
44
-        return $this->defaultName() ?? $this->user->firstname.' '.$this->user->lastname;
44
+        return $this->defaultName() ?? $this->user->firstname . ' ' . $this->user->lastname;
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.
src/models/Championship.php 1 patch
Spacing   +3 added lines, -3 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
         });
@@ -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.
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 $this->$teamToUpdate == null ? '' : $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 $this->$competitorToUpdate == null ? '' : $this->$competitorToUpdate->short_id;
125 125
         }
Please login to merge, or discard this patch.