Test Failed
Push — master ( 42684e...2841c5 )
by Julien
11:02
created
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/TreeController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@
 block discarded – undo
75 75
             Round::generateFights($rounds, $settings, $championship);
76 76
         } catch (TreeGenerationException $e) {
77 77
             redirect()->back()
78
-                ->withErrors([$numFighters ."-".$e->getMessage()]);
78
+                ->withErrors([$numFighters . "-" . $e->getMessage()]);
79 79
         }
80 80
 
81 81
         return redirect()->back()
82 82
             ->with('numFighters', $numFighters)
83
-            ->with(['success' , "Success"]);
83
+            ->with(['success', "Success"]);
84 84
     }
85 85
 }
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_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();
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();
Please login to merge, or discard this patch.
src/TreeGen/DirectEliminationTreeGen.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,9 @@
 block discarded – undo
78 78
 
79 79
 
80 80
         //If there's already a match in the match array, then that means the next round is round 2, so increase the round number
81
-        if (count($this->brackets)) $roundNumber++;
81
+        if (count($this->brackets)) {
82
+            $roundNumber++;
83
+        }
82 84
 
83 85
         $countMatches = count($matches);
84 86
         //Create the first full round of teams, some may be blank if waiting on the results of a previous round
Please login to merge, or discard this patch.