Test Failed
Branch scoresheet (616eaa)
by Julien
04:15
created
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
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('team', function (Blueprint $table) {
10
+        Schema::create('team', function(Blueprint $table) {
11 11
             $table->increments('id');
12 12
             $table->string('name');
13 13
             $table->integer('championship_id')->unsigned()->index(); // A checar
Please login to merge, or discard this patch.
database/migrations/2015_11_01_171758_create_Venue_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('venue', function (Blueprint $table) {
15
+        Schema::create('venue', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('venue_name');
18 18
             $table->string('address')->nullable();
Please login to merge, or discard this patch.
src/models/Championship.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,11 +23,11 @@
 block discarded – undo
23 23
     {
24 24
         parent::boot();
25 25
 
26
-        static::deleting(function ($championship) {
26
+        static::deleting(function($championship) {
27 27
             $championship->competitors()->delete();
28 28
             $championship->settings()->delete();
29 29
         });
30
-        static::restoring(function ($championship) {
30
+        static::restoring(function($championship) {
31 31
             $championship->competitors()->restore();
32 32
             $championship->settings()->restore();
33 33
         });
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,8 +157,9 @@
 block discarded – undo
157 157
 
158 158
     public function buildName()
159 159
     {
160
-        if ($this->settings != null && $this->settings->alias != null && $this->settings->alias != '')
161
-            return $this->settings->alias;
160
+        if ($this->settings != null && $this->settings->alias != null && $this->settings->alias != '') {
161
+                    return $this->settings->alias;
162
+        }
162 163
 
163 164
         if ($this->hasNoCustomSettings()) {
164 165
             return $this->category->name;
Please login to merge, or discard this patch.
src/models/Tournament.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,13 +56,13 @@
 block discarded – undo
56 56
     protected static function boot()
57 57
     {
58 58
         parent::boot();
59
-        static::deleting(function ($tournament) {
59
+        static::deleting(function($tournament) {
60 60
             foreach ($tournament->championships as $ct) {
61 61
                 $ct->delete();
62 62
             }
63 63
             $tournament->invites()->delete();
64 64
         });
65
-        static::restoring(function ($tournament) {
65
+        static::restoring(function($tournament) {
66 66
             foreach ($tournament->championships()->withTrashed()->get() as $ct) {
67 67
                 $ct->restore();
68 68
             }
Please login to merge, or discard this patch.
database/migrations/2015_12_23_025811_create_ChampionshipSettings_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('championship_settings', function (Blueprint $table) {
15
+        Schema::create('championship_settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('alias')->nullable();
18 18
             $table->integer('championship_id')->unsigned()->unique();
Please login to merge, or discard this patch.
database/migrations/2015_12_03_230346_create_Category_table.php 1 patch
Spacing   +3 added lines, -3 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('gender')->nullable();
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             $table->engine = 'InnoDB';
35 35
         });
36 36
 
37
-        Schema::create('championship', function (Blueprint $table) {
37
+        Schema::create('championship', function(Blueprint $table) {
38 38
             $table->increments('id');
39 39
             $table->integer('tournament_id')->unsigned()->index();
40 40
             $table->integer('category_id')->unsigned()->index();
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             $table->engine = 'InnoDB';
57 57
         });
58 58
 
59
-        Schema::create('competitor', function (Blueprint $table) {
59
+        Schema::create('competitor', function(Blueprint $table) {
60 60
             $table->increments('id');
61 61
             $table->integer('championship_id')->unsigned()->index();
62 62
             $table->foreign('championship_id')
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,20 +16,20 @@
 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, 'kendo-tournaments');
21 21
 //        $this->publishes([ $viewPath => base_path('resources/views/vendor/kendo-tournaments'),], 'kendo-tournaments');
22 22
 
23
-        $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
24
-        $this->loadTranslationsFrom(__DIR__.'/../translations', 'kendo-tournaments');
23
+        $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
24
+        $this->loadTranslationsFrom(__DIR__ . '/../translations', 'kendo-tournaments');
25 25
 
26 26
 //        $this->publishes([__DIR__ . '/views' => base_path('resources/views/vendor/kendo-tournaments')]);
27
-        $this->publishes([__DIR__.'/../database/migrations' => $this->app->databasePath().'/migrations'], 'migrations');
28
-        $this->publishes([__DIR__.'/../database/seeds' => $this->app->databasePath().'/seeds'], 'seeds');
29
-        $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'seeds');
30
-        $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets');
27
+        $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'migrations');
28
+        $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'seeds');
29
+        $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'seeds');
30
+        $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets');
31 31
 
32
-        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function ($router) {
32
+        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function($router) {
33 33
             $router->get('/', 'Xoco70\KendoTournaments\TreeController@index')->name('tree.index');
34 34
             $router->post('/championships/{championship}/trees', 'Xoco70\KendoTournaments\TreeController@store')->name('tree.index');
35 35
         });
Please login to merge, or discard this patch.
database/migrations/2017_02_12_000437_create_FightersGroup_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('fighters_group_team', function (Blueprint $table) {
16
+        Schema::create('fighters_group_team', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('team_id')->unsigned()->nullable()->index();
19 19
             $table->integer('fighters_group_id')->unsigned()->index();
Please login to merge, or discard this patch.
database/migrations/2016_11_23_125509_create_Fight_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('fight', function (Blueprint $table) {
16
+        Schema::create('fight', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('fighters_group_id')->unsigned()->index();
19 19
             $table->foreign('fighters_group_id')
Please login to merge, or discard this patch.