Passed
Push — master ( d8896b...fb89fc )
by Julien
05:27
created
database/migrations/2016_03_15_000438_create_lt_Competitor_Team_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('competitor_team', function (Blueprint $table) {
16
+        Schema::create('competitor_team', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('team_id')->unsigned()->nullable()->index();
19 19
             $table->integer('competitor_id')->unsigned()->index();
Please login to merge, or discard this patch.
database/migrations/2015_10_28_193240_create_lt_sessions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
         if (!Schema::hasTable('sessions')) {
17
-            Schema::create('sessions', function (Blueprint $table) {
17
+            Schema::create('sessions', function(Blueprint $table) {
18 18
                 $table->string('id')->unique();
19 19
                 $table->integer('user_id')->nullable();
20 20
                 $table->string('ip_address', 45)->nullable();
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
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Xoco70\LaravelTournaments\Models\Championship;
4 4
 use Xoco70\LaravelTournaments\Models\Competitor;
5 5
 
6
-$factory->define(Competitor::class, function (Faker\Generator $faker) {
6
+$factory->define(Competitor::class, function(Faker\Generator $faker) {
7 7
     $tcs = Championship::all()->pluck('id')->toArray();
8 8
     $users = \Illuminate\Foundation\Auth\User::all()->pluck('id')->toArray();
9 9
     $championshipId = $faker->randomElement($tcs);
Please login to merge, or discard this patch.
database/factories/TournamentFactory.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\Tournament;
5 5
 use Xoco70\LaravelTournaments\Models\Venue;
6 6
 
7
-$factory->define(Tournament::class, function (Faker\Generator $faker) {
7
+$factory->define(Tournament::class, function(Faker\Generator $faker) {
8 8
 
9 9
     $dateIni = $faker->dateTimeBetween('now', '+2 weeks')->format('Y-m-d');
10 10
     $venues = Venue::all()->pluck('id')->toArray();
Please login to merge, or discard this patch.
database/factories/UserFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-$factory->define(\Illuminate\Foundation\Auth\User::class, function (Faker\Generator $faker) {
4
+$factory->define(\Illuminate\Foundation\Auth\User::class, function(Faker\Generator $faker) {
5 5
     return [
6 6
         'name'               => $faker->name,
7 7
         'email'              => $faker->unique()->safeEmail,
Please login to merge, or discard this patch.
src/TournamentsServiceProvider.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,18 +16,18 @@
 block discarded – undo
16 16
      */
17 17
     public function boot(Router $router)
18 18
     {
19
-        $viewPath = __DIR__.'/../resources/views';
19
+        $viewPath = __DIR__ . '/../resources/views';
20 20
         $this->loadViewsFrom($viewPath, 'laravel-tournaments');
21 21
 
22
-        $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
23
-        $this->loadTranslationsFrom(__DIR__.'/../translations', 'laravel-tournaments');
22
+        $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
23
+        $this->loadTranslationsFrom(__DIR__ . '/../translations', 'laravel-tournaments');
24 24
 
25
-        $this->publishes([__DIR__.'/../database/seeds' => $this->app->databasePath().'/seeds'], 'laravel-tournaments');
26
-        $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'laravel-tournaments');
27
-        $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments');
28
-        $this->publishes([__DIR__.'/../config/laravel-tournaments.php' => config_path('laravel-tournaments.php')], 'laravel-tournaments');
25
+        $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'laravel-tournaments');
26
+        $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'laravel-tournaments');
27
+        $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments');
28
+        $this->publishes([__DIR__ . '/../config/laravel-tournaments.php' => config_path('laravel-tournaments.php')], 'laravel-tournaments');
29 29
 
30
-        $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function ($router) {
30
+        $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function($router) {
31 31
             $router->get('/', 'Xoco70\LaravelTournaments\TreeController@index')->name('tree.index');
32 32
             $router->post('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@store')->name('tree.store');
33 33
             $router->put('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@update')->name('tree.update');
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000001_alter_lt_users_table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
         if (!Schema::hasTable('users')) {
17
-            Schema::create('users', function (Blueprint $table) {
17
+            Schema::create('users', function(Blueprint $table) {
18 18
                 $table->increments('id');
19 19
                 $table->string('name');
20 20
                 $table->string('firstname')->default('firstname');
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
                 $table->timestamps();
25 25
             });
26 26
         } else {
27
-            Schema::table('users', function (Blueprint $table) {
27
+            Schema::table('users', function(Blueprint $table) {
28 28
                 if (!Schema::hasColumn('users', 'name')) {
29 29
                     $table->string('name')->default('name');
30 30
                 }
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                     $table->string('lastname')->default('lastname');
36 36
                 }
37 37
                 if (!Schema::hasColumn('users', 'email')) {
38
-                    $table->string('email')->default('user_'.rand(100000, 999999).'@kendozone.com')->unique();
38
+                    $table->string('email')->default('user_' . rand(100000, 999999) . '@kendozone.com')->unique();
39 39
                 }
40 40
 
41 41
                 if (!Schema::hasColumn('users', 'password')) {
Please login to merge, or discard this patch.
src/TreeGen/SingleEliminationTreeGen.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@
 block discarded – undo
301 301
     function getMaxFightersByEntity($userGroups): int
302 302
     {
303 303
         return $userGroups
304
-            ->sortByDesc(function ($group) {
304
+            ->sortByDesc(function($group) {
305 305
                 return $group->count();
306 306
             })
307 307
             ->first()
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     protected function getTreeSize($fighterCount, $groupSize)
92 92
     {
93 93
         $squareMultiplied = collect([1, 2, 4, 8, 16, 32, 64])
94
-            ->map(function ($item) use ($groupSize) {
94
+            ->map(function($item) use ($groupSize) {
95 95
                 return $item * $groupSize;
96 96
             }); // [4, 8, 16, 32, 64,...]
97 97
 
@@ -197,10 +197,10 @@  discard block
 block discarded – undo
197 197
     protected function getFightersByArea()
198 198
     {
199 199
         $areas = $this->settings->fightingAreas;
200
-        $fighters = $this->getFighters();   // Get Competitor or Team Objects
201
-        $fighterByEntity = $this->getFightersByEntity($fighters);   // Chunk it by entities (Fede, Assoc, Club,...)
202
-        $fightersWithBye = $this->adjustFightersGroupWithByes($fighters, $fighterByEntity);     // Fill with Byes
203
-        return $fightersWithBye->chunk(count($fightersWithBye) / $areas);   // Chunk user by areas
200
+        $fighters = $this->getFighters(); // Get Competitor or Team Objects
201
+        $fighterByEntity = $this->getFightersByEntity($fighters); // Chunk it by entities (Fede, Assoc, Club,...)
202
+        $fightersWithBye = $this->adjustFightersGroupWithByes($fighters, $fighterByEntity); // Fill with Byes
203
+        return $fightersWithBye->chunk(count($fightersWithBye) / $areas); // Chunk user by areas
204 204
     }
205 205
 
206 206
     /**
Please login to merge, or discard this patch.