Test Failed
Push — master ( 366b92...449984 )
by Julien
12:33
created
src/models/Tree.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
 
219 219
     /**
220 220
      * @param Collection $tree
221
-     * @param $settings
221
+     * @param ChampionshipSettings $settings
222 222
      */
223 223
     public static function generateFights(Collection $tree, $settings, Championship $championship = null)
224 224
     {
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
     public $championship, $settings;
21 21
 
22 22
 
23
+    /**
24
+     * @param \Xoco70\KendoTournaments\Models\ChampionshipSettings $settings
25
+     */
23 26
     public function __construct(Championship $championship, $groupBy, $settings)
24 27
     {
25 28
         $this->championship = $championship;
@@ -257,7 +260,7 @@  discard block
 block discarded – undo
257 260
 
258 261
     /**
259 262
      * @param $userGroups
260
-     * @param $max
263
+     * @param integer $max
261 264
      * @return Collection
262 265
      */
263 266
     private function repart($userGroups, $max)
Please login to merge, or discard this patch.
database/migrations/2015_11_01_171759_create_Tournament_table.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -6,47 +6,47 @@
 block discarded – undo
6 6
 
7 7
 class CreateTournamentTable extends Migration {
8 8
 
9
-	public function up()
10
-	{
11
-		Schema::create('tournament', function(Blueprint $table) {
12
-			$table->increments('id');
9
+    public function up()
10
+    {
11
+        Schema::create('tournament', function(Blueprint $table) {
12
+            $table->increments('id');
13 13
             $table->Integer('user_id')->unsigned()->index();
14
-			$table->foreign('user_id')
15
-					->references('id')
16
-					->on('users')
17
-					->onUpdate('cascade')
18
-					->onDelete('cascade');
14
+            $table->foreign('user_id')
15
+                    ->references('id')
16
+                    ->on('users')
17
+                    ->onUpdate('cascade')
18
+                    ->onDelete('cascade');
19 19
 
20
-			$table->string('name');
21
-			$table->string('slug')->default('')->unique();
20
+            $table->string('name');
21
+            $table->string('slug')->default('')->unique();
22 22
 
23
-			$table->date('dateIni');
24
-			$table->date('dateFin');
23
+            $table->date('dateIni');
24
+            $table->date('dateFin');
25 25
             $table->date('registerDateLimit');
26 26
             $table->integer('sport')->unsigned()->default(1); // Default is Kendo for now
27
-			$table->string('promoter')->nullable();
28
-			$table->string('host_organization')->nullable();
29
-			$table->string('technical_assistance')->nullable();
30
-			$table->integer('rule_id')->default(1);
27
+            $table->string('promoter')->nullable();
28
+            $table->string('host_organization')->nullable();
29
+            $table->string('technical_assistance')->nullable();
30
+            $table->integer('rule_id')->default(1);
31 31
             $table->tinyInteger('type')->default(1); // 1= local, 2= state, 3= national, 4=continent, 5=world
32 32
             $table->integer("venue_id")->nullable()->unsigned();
33
-			$table->integer("level_id")->unsigned()->default(1);
33
+            $table->integer("level_id")->unsigned()->default(1);
34 34
 
35 35
             $table->foreign('venue_id')
36 36
                 ->references('id')
37 37
                 ->on('venue');
38 38
 
39
-			$table->timestamps();
40
-			$table->softDeletes();
41
-			$table->engine = 'InnoDB';
39
+            $table->timestamps();
40
+            $table->softDeletes();
41
+            $table->engine = 'InnoDB';
42 42
 
43
-		});
44
-	}
43
+        });
44
+    }
45 45
 
46
-	public function down()
47
-	{
48
-		DB::statement('SET FOREIGN_KEY_CHECKS = 0');
49
-		Schema::dropIfExists('tournament');
50
-		DB::statement('SET FOREIGN_KEY_CHECKS = 1');
51
-	}
46
+    public function down()
47
+    {
48
+        DB::statement('SET FOREIGN_KEY_CHECKS = 0');
49
+        Schema::dropIfExists('tournament');
50
+        DB::statement('SET FOREIGN_KEY_CHECKS = 1');
51
+    }
52 52
 }
53 53
\ No newline at end of file
Please login to merge, or discard this patch.
src/models/Fight.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     /**
108 108
      * Save a Fight.
109
-     * @param $tree
109
+     * @param Collection $tree
110 110
      * @param int $numRound
111 111
      */
112 112
     public static function saveFightRound($tree, $numRound = 1)
@@ -166,6 +166,9 @@  discard block
 block discarded – undo
166 166
 //        }
167 167
 //    }
168 168
 
169
+    /**
170
+     * @param Collection $tree
171
+     */
169 172
     public static function saveRoundRobinFights(Championship $championship, $tree)
170 173
     {
171 174
 
Please login to merge, or discard this patch.