Passed
Push — master ( 165397...f32c5e )
by Julien
09:37
created
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/migrations/2014_10_12_000000_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('users', function (Blueprint $table) {
15
+        Schema::create('users', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('email')->unique();
Please login to merge, or discard this patch.
src/TreeGen/PlayOffTreeGen.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 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
     {
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.
database/factories/CompetitorFactory.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\Competitor;
6 6
 
7
-$factory->define(Competitor::class, function (Faker\Generator $faker) {
7
+$factory->define(Competitor::class, function(Faker\Generator $faker) {
8 8
     $tcs = Championship::all()->pluck('id')->toArray();
9 9
     $users = User::all()->pluck('id')->toArray();
10 10
     $championshipId = $faker->randomElement($tcs);
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000010_add_users_fields_table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('users', function ($table) {
16
+        Schema::table('users', function($table) {
17 17
             $table->string('firstname')->default('firstname');
18 18
             $table->string('lastname')->default('lastname');
19 19
         });
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
     {
29 29
         DBHelpers::setFKCheckOff();
30 30
         if (Schema::hasColumn('users', 'firstname')) {
31
-            Schema::table('users', function (Blueprint $table) {
31
+            Schema::table('users', function(Blueprint $table) {
32 32
                 $table->dropColumn('firstname');
33 33
             });
34 34
         }
35 35
         if (Schema::hasColumn('users', 'lastname')) {
36
-            Schema::table('users', function (Blueprint $table) {
36
+            Schema::table('users', function(Blueprint $table) {
37 37
                 $table->dropColumn('lastname');
38 38
             });
39 39
         }
Please login to merge, or discard this patch.
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/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.