Test Failed
Push — master ( 0b1eb3...dde83f )
by Julien
04:04
created
database/factories/ChampionshipFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Xoco70\KendoTournaments\Models\Championship;
6 6
 use Xoco70\KendoTournaments\Models\Tournament;
7 7
 
8
-$factory->define(Championship::class, function (Faker\Generator $faker) {
8
+$factory->define(Championship::class, function(Faker\Generator $faker) {
9 9
     $tournaments = Tournament::all()->pluck('id')->toArray();
10 10
     $categories = Category::all()->pluck('id')->toArray();
11 11
 
Please login to merge, or discard this patch.
database/factories/ChampionshipSettingsFactory.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\KendoTournaments\Models\Championship;
5 5
 use Xoco70\KendoTournaments\Models\ChampionshipSettings;
6 6
 
7
-$factory->define(ChampionshipSettings::class, function (Faker\Generator $faker) use ($factory) {
7
+$factory->define(ChampionshipSettings::class, function(Faker\Generator $faker) use ($factory) {
8 8
     $tcs = Championship::all()->pluck('id')->toArray();
9 9
 
10 10
     return [
Please login to merge, or discard this patch.
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/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
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @param $settings
66
+     * @param ChampionshipSettings $settings
67 67
      * @param Championship $championship
68 68
      */
69 69
     public static function generateFights(Collection $rounds, $settings, Championship $championship = null)
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
     private function getTreeSize($fighterCount, $groupSize)
197 197
     {
198 198
         $square = collect([1, 2, 4, 8, 16, 32, 64]);
199
-        $squareMultiplied = $square->map(function ($item, $key) use ($groupSize) {
199
+        $squareMultiplied = $square->map(function($item, $key) use ($groupSize) {
200 200
             return $item * $groupSize;
201 201
         });
202 202
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -247,8 +247,8 @@  discard block
 block discarded – undo
247 247
     }
248 248
 
249 249
     /**
250
-     * @param $usersByArea
251
-     * @param $area
250
+     * @param Collection $usersByArea
251
+     * @param integer $area
252 252
      *
253 253
      * @return Collection
254 254
      */
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
     /**
284 284
      * @param $area
285 285
      * @param $fighters
286
-     * @param $order
286
+     * @param integer $order
287 287
      *
288 288
      * @return Round
289 289
      */
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
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Xoco70\KendoTournaments\Models\Championship;
5 5
 use Xoco70\KendoTournaments\Models\Competitor;
6 6
 
7
-$factory->define(Competitor::class, function (Faker\Generator $faker) {
7
+$factory->define(Competitor::class, function(Faker\Generator $faker) {
8 8
     $tcs = Championship::all()->pluck('id')->toArray();
9 9
     $users = User::all()->pluck('id')->toArray();
10 10
 
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,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2
-$directEliminationTree = $championship->rounds->map(function ($item, $key) use ($championship) {
3
-    if ($championship->category->isTeam()){
2
+$directEliminationTree = $championship->rounds->map(function($item, $key) use ($championship) {
3
+    if ($championship->category->isTeam()) {
4 4
 
5 5
         $fighter1 = $item->team1 != null ? $item->team1->name : "Bye";
6 6
         $fighter2 = $item->team2 != null ? $item->team2->name : "Bye";
7
-    }else{
7
+    } else {
8 8
         $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye";
9 9
         $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye";
10 10
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
         $fighter1 = $item->team1 != null ? $item->team1->name : "Bye";
6 6
         $fighter2 = $item->team2 != null ? $item->team2->name : "Bye";
7
-    }else{
7
+    } else{
8 8
         $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye";
9 9
         $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye";
10 10
     }
Please login to merge, or discard this patch.