Test Failed
Push — master ( 028749...4233d7 )
by Julien
03:35
created
database/migrations/2016_10_28_193239_create_sessions_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('sessions', function (Blueprint $table) {
16
+        Schema::create('sessions', function(Blueprint $table) {
17 17
             $table->string('id')->unique();
18 18
             $table->integer('user_id')->nullable();
19 19
             $table->string('ip_address', 45)->nullable();
Please login to merge, or discard this patch.
database/migrations/2015_12_03_230346_create_Category_table.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('category', function (Blueprint $table) {
15
+        Schema::create('category', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('alias')->default('');
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
 //            $table->foreign('gradeMax')
31 31
 //                ->references('id')
32 32
 //                ->on('grade');
33
-            $table->unique(['name','alias','gender','isTeam','ageCategory','ageMin','ageMax','gradeCategory','gradeMin','gradeMax'], 'category_fields_unique');
33
+            $table->unique(['name', 'alias', 'gender', 'isTeam', 'ageCategory', 'ageMin', 'ageMax', 'gradeCategory', 'gradeMin', 'gradeMax'], 'category_fields_unique');
34 34
             $table->timestamps();
35 35
             $table->engine = 'InnoDB';
36 36
 
37 37
         });
38 38
 
39
-        Schema::create('championship', function (Blueprint $table) {
39
+        Schema::create('championship', function(Blueprint $table) {
40 40
             $table->increments('id');
41 41
             $table->integer('tournament_id')->unsigned()->index();
42 42
             $table->integer('category_id')->unsigned()->index();
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         });
63 63
 
64 64
 
65
-        Schema::create('competitor', function (Blueprint $table) {
65
+        Schema::create('competitor', function(Blueprint $table) {
66 66
             $table->increments('id');
67 67
             $table->integer('championship_id')->unsigned()->index();
68 68
             $table->foreign('championship_id')
Please login to merge, or discard this patch.
database/migrations/2016_95_04_171759_create_Team_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
     public function up()
10 10
     {
11
-        Schema::create('team', function (Blueprint $table) {
11
+        Schema::create('team', function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->string('name');
14 14
             $table->integer('championship_id')->unsigned()->index(); // A checar
Please login to merge, or discard this patch.
database/seeds/CategorySeeder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
         Category::create(['name' => 'categories.junior', 'gender' => 'X', 'isTeam' => 0, 'ageCategory' => 5, 'ageMin' => '13', 'ageMax' => '15', 'gradeCategory' => 0]);
19 19
         Category::create(['name' => 'categories.junior_team', 'gender' => 'X', 'isTeam' => 1, 'ageCategory' => 5, 'ageMin' => '13', 'ageMax' => '15', 'gradeCategory' => 0]);
20 20
 
21
-        Category::create(['name' => 'categories.men_single', 'gender' => 'M', 'isTeam' => 0, 'ageCategory' => 5, 'ageMin' => '18',]);
22
-        Category::create(['name' => 'categories.men_team', 'gender' => 'M', 'isTeam' => 1, 'ageCategory' => 5, 'ageMin' => '18',]);
21
+        Category::create(['name' => 'categories.men_single', 'gender' => 'M', 'isTeam' => 0, 'ageCategory' => 5, 'ageMin' => '18', ]);
22
+        Category::create(['name' => 'categories.men_team', 'gender' => 'M', 'isTeam' => 1, 'ageCategory' => 5, 'ageMin' => '18', ]);
23 23
 
24 24
         Category::create(['name' => 'categories.ladies_single', 'gender' => 'F', 'isTeam' => 0, 'ageCategory' => 5, 'ageMin' => '18']);
25 25
         Category::create(['name' => 'categories.ladies_team', 'gender' => 'F', 'isTeam' => 1, 'ageCategory' => 5, 'ageMin' => '18']);
Please login to merge, or discard this patch.
database/factories/PreliminaryFactory.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\KendoTournaments\Models\Round;
5 5
 
6
-$factory->define(Round::class, function (Faker\Generator $faker) {
6
+$factory->define(Round::class, function(Faker\Generator $faker) {
7 7
 
8 8
     return [
9 9
 //        'name' => $faker->name,
Please login to merge, or discard this patch.
src/TournamentsServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@
 block discarded – undo
28 28
         $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'migrations');
29 29
         $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'seeds');
30 30
         $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'seeds');
31
-        $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/kendo-tournaments'),], 'assets');
31
+        $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/kendo-tournaments'), ], 'assets');
32 32
 
33
-        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function ($router) {
33
+        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function($router) {
34 34
             $router->get('/', 'Xoco70\KendoTournaments\TreeController@index')->name('tree.index');
35 35
             $router->post('/championships/{championship}/trees', 'Xoco70\KendoTournaments\TreeController@store')->name('tree.index');
36 36
         });
Please login to merge, or discard this patch.
database/migrations/2017_02_12_000428_create_Round_Competitor_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('round_competitor', function (Blueprint $table) {
16
+        Schema::create('round_competitor', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('competitor_id')->unsigned()->nullable()->index();
19 19
             $table->integer('round_id')->unsigned()->index(); // A checar
Please login to merge, or discard this patch.
database/migrations/2017_02_12_000437_create_Round_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('round_team', function (Blueprint $table) {
16
+        Schema::create('round_team', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('team_id')->unsigned()->nullable()->index();
19 19
             $table->integer('round_id')->unsigned()->index(); // A checar
Please login to merge, or discard this patch.
src/models/Round.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 
71 71
         // Delete previous fight for this championship
72 72
 
73
-        $arrRoundsId = $rounds->map(function ($value, $key) {
73
+        $arrRoundsId = $rounds->map(function($value, $key) {
74 74
             return $value->id;
75 75
         })->toArray();
76 76
         Fight::destroy($arrRoundsId);
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
 
64 64
     /**
65
-     * @param $settings
65
+     * @param ChampionshipSettings $settings
66 66
      * @param Championship $championship
67 67
      */
68 68
     public static function generateFights(Collection $rounds, $settings, Championship $championship = null)
Please login to merge, or discard this patch.