Completed
Push — master ( 1f1740...dbfee3 )
by Julien
10:56
created
resources/views/partials/tree/brackets/fight.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-$topOffset = ($numRound == 1 ? 0 : (pow(2, $numRound-1)-1) * 51);
2
+$topOffset = ($numRound == 1 ? 0 : (pow(2, $numRound - 1) - 1) * 51);
3 3
 $top = \App\Bracket::getTopFight($numRound, $numFight) + $topOffset;
4 4
 
5 5
 $left = \App\Bracket::getLeftFight($numRound);
Please login to merge, or discard this patch.
database/factories/ChampionshipSettingsFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 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
-    $fightingAreas = [1,2,4,8];
10
+    $fightingAreas = [1, 2, 4, 8];
11 11
     return [
12 12
         'championship_id'      => $faker->randomElement($tcs),
13 13
         'treeType'             => $faker->numberBetween(0, 1),
Please login to merge, or discard this patch.
src/TreeGen/DirectEliminationTreeGen.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * Create empty groups for direct Elimination Tree.
52 52
      *
53
-     * @param $numFighters
53
+     * @param integer $numFighters
54 54
      */
55 55
     protected function pushEmptyGroupsToTree($numFighters)
56 56
     {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
     /**
149 149
      * @param Collection $usersByArea
150
-     * @param $round
150
+     * @param integer $round
151 151
      */
152 152
     public function generateGroupsForRound(Collection $usersByArea, $round)
153 153
     {
Please login to merge, or discard this patch.
src/TreeGen/PlayOffTreeGen.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @param $fightersByEntity
44 44
      *
45
-     * @return mixed
45
+     * @return Collection
46 46
      */
47 47
     protected function chunkAndShuffle(Collection $fightersByEntity)
48 48
     {
@@ -108,6 +108,9 @@  discard block
 block discarded – undo
108 108
 
109 109
     }
110 110
 
111
+    /**
112
+     * @param integer $round
113
+     */
111 114
     protected function generateGroupsForRound(Collection $fightersByArea, $round)
112 115
     {
113 116
         $fightersId = $fightersByArea->pluck('id');
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 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
         }
Please login to merge, or discard this patch.