Test Failed
Push — master ( 8e1f80...34f25f )
by Julien
03:07
created
src/TreeController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,11 +77,11 @@
 block discarded – undo
77 77
             FightersGroup::generateFights($groups, $settings, $championship);
78 78
         } catch (TreeGenerationException $e) {
79 79
             redirect()->back()
80
-                ->withErrors([$numFighters ."-".$e->getMessage()]);
80
+                ->withErrors([$numFighters . "-" . $e->getMessage()]);
81 81
         }
82 82
 
83 83
         return redirect()->back()
84 84
             ->with('numFighters', $numFighters)
85
-            ->with(['success' , "Success"]);
85
+            ->with(['success', "Success"]);
86 86
     }
87 87
 }
Please login to merge, or discard this patch.
database/migrations/2017_03_15_000437_create_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.
resources/views/partials/tree/directElimination.blade.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 use Xoco70\KendoTournaments\TreeGen\DirectEliminationTreeGen;
3 3
 
4
-$directEliminationTree = $championship->fightersGroups->where('round',1)->map(function ($item, $key) use ($championship) {
5
-    if ($championship->category->isTeam()){
4
+$directEliminationTree = $championship->fightersGroups->where('round', 1)->map(function($item, $key) use ($championship) {
5
+    if ($championship->category->isTeam()) {
6 6
 
7 7
         $fighter1 = $item->team1 != null ? $item->team1->name : "Bye";
8 8
         $fighter2 = $item->team2 != null ? $item->team2->name : "Bye";
9
-    }else{
9
+    } else {
10 10
         $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye";
11 11
         $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye";
12 12
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
         $fighter1 = $item->team1 != null ? $item->team1->name : "Bye";
8 8
         $fighter2 = $item->team2 != null ? $item->team2->name : "Bye";
9
-    }else{
9
+    } else{
10 10
         $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye";
11 11
         $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye";
12 12
 
Please login to merge, or discard this patch.
database/migrations/2016_10_24_223706_create_FightersGroup_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_groups', function (Blueprint $table) {
16
+        Schema::create('fighters_groups', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->tinyInteger('short_id');
19 19
             $table->integer('championship_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/models/FighterGroupTeam.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
     public $timestamps = true;
12 12
 
13 13
 
14
-    public function group(){
14
+    public function group() {
15 15
         return $this->belongsTo(FightersGroup::class);
16 16
     }
17 17
 
18
-    public function team(){
18
+    public function team() {
19 19
         return $this->belongsTo(Team::class);
20 20
     }
21 21
 }
22 22
\ No newline at end of file
Please login to merge, or discard this patch.
src/models/FighterGroupCompetitor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
12 12
 
13 13
 
14 14
 
15
-    public function group(){
15
+    public function group() {
16 16
         return $this->belongsTo(FightersGroup::class);
17 17
     }
18 18
 
19
-    public function competitor(){
19
+    public function competitor() {
20 20
         return $this->belongsTo(Competitor::class);
21 21
     }
22 22
 }
23 23
\ No newline at end of file
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.store');
35 35
         });
Please login to merge, or discard this patch.
database/migrations/2016_95_04_171759_create_Team_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 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
-            $table->integer('short_id')->unsigned()->nullable() ;
12
+            $table->integer('short_id')->unsigned()->nullable();
13 13
             $table->string('name');
14 14
             $table->integer('championship_id')->unsigned()->index(); // A checar
15 15
             $table->string('picture')->nullable();
Please login to merge, or discard this patch.
src/models/Team.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,9 @@
 block discarded – undo
45 45
 
46 46
     public function getName()
47 47
     {
48
-        if ($this == null) return "BYE";
48
+        if ($this == null) {
49
+            return "BYE";
50
+        }
49 51
         return $this->name;
50 52
     }
51 53
 
Please login to merge, or discard this patch.