Completed
Pull Request — master (#33)
by Julien
19:06 queued 13:55
created
database/factories/VenueFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Xoco70\LaravelTournaments\Models\Venue;
4 4
 
5
-$factory->define(Venue::class, function (Faker\Generator $faker) {
5
+$factory->define(Venue::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'venue_name' => $faker->colorName,
8 8
         'address'    => $faker->streetName,
Please login to merge, or discard this patch.
database/factories/CategoryFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use Xoco70\LaravelTournaments\Models\Category as Cat;
5 5
 
6
-$factory->define(Cat::class, function (Faker\Generator $faker) {
6
+$factory->define(Cat::class, function(Faker\Generator $faker) {
7 7
     $name = ['categories.junior',
8 8
         'categories.junior_team',
9 9
         'categories.men_single',
Please login to merge, or discard this patch.
database/factories/ChampionshipFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Xoco70\LaravelTournaments\Models\Championship;
6 6
 use Xoco70\LaravelTournaments\Models\Tournament;
7 7
 
8
-$factory->define(Championship::class, function (Faker\Generator $faker) {
8
+$factory->define(Championship::class, function(Faker\Generator $faker) {
9 9
     $tournaments = Tournament::all()->pluck('id')->toArray();
10 10
     $categories = Cat::all()->pluck('id')->toArray();
11 11
 
Please login to merge, or discard this patch.
database/factories/TeamFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Xoco70\LaravelTournaments\Models\Team;
4 4
 
5
-$factory->define(Team::class, function (Faker\Generator $faker) {
5
+$factory->define(Team::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'name'            => $faker->name,
8 8
         'championship_id' => 2,
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/TreeController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,10 +81,10 @@
 block discarded – undo
81 81
     {
82 82
         if ($isTeam) {
83 83
             $championship = Championship::find(2);
84
-            factory(Team::class, (int) $numFighters)->create(['championship_id' => $championship->id]);
84
+            factory(Team::class, (int)$numFighters)->create(['championship_id' => $championship->id]);
85 85
         } else {
86 86
             $championship = Championship::find(1);
87
-            $users = factory(User::class, (int) $numFighters)->create();
87
+            $users = factory(User::class, (int)$numFighters)->create();
88 88
             foreach ($users as $user) {
89 89
                 factory(Competitor::class)->create(
90 90
                     ['championship_id' => $championship->id,
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/TreeGen/CreateSingleEliminationTree.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);
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             //The minus 3 is to ignore the final, semi final and quarter final rounds
141 141
 
142 142
             for ($i = 0; $i < $noRounds - 3; $i++) {
143
-                $tempRounds[] = 'Last '.$noTeamsInFirstRound;
143
+                $tempRounds[] = 'Last ' . $noTeamsInFirstRound;
144 144
                 $noTeamsInFirstRound /= 2;
145 145
             }
146 146
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         foreach ($roundTitles as $key => $roundTitle) {
163 163
             $left = $key * ($this->matchWrapperWidth + $this->roundSpacing - 1);
164 164
 
165
-            echo '<div class="round-title" style="left: '.$left.'px;">'.$roundTitle.'</div>';
165
+            echo '<div class="round-title" style="left: ' . $left . 'px;">' . $roundTitle . '</div>';
166 166
         }
167 167
         echo '</div>';
168 168
     }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     public function getPlayerList($selected)
176 176
     {
177 177
         $html = '<select>
178
-                <option'.($selected == '' ? ' selected' : '').'></option>';
178
+                <option'.($selected == '' ? ' selected' : '') . '></option>';
179 179
 
180 180
         foreach ($this->championship->fighters as $fighter) {
181 181
             $html = $this->addOptionToSelect($selected, $fighter, $html);
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     {
236 236
         if ($fighter != null) {
237 237
             $select = $selected != null && $selected->id == $fighter->id ? ' selected' : '';
238
-            $html .= '<option'.$select
238
+            $html .= '<option' . $select
239 239
                 .' value='
240 240
                 .($fighter->id ?? '')
241 241
                 .'>'
Please login to merge, or discard this patch.
database/factories/ChampionshipSettingsFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Xoco70\LaravelTournaments\Models\Championship;
5 5
 use Xoco70\LaravelTournaments\Models\ChampionshipSettings;
6 6
 
7
-$factory->define(ChampionshipSettings::class, function (Faker\Generator $faker) use ($factory) {
7
+$factory->define(ChampionshipSettings::class, function(Faker\Generator $faker) use ($factory) {
8 8
     $tcs = Championship::all()->pluck('id')->toArray();
9 9
 
10 10
     $fightingAreas = [1, 2, 4, 8];
Please login to merge, or discard this patch.