Test Failed
Branch master (2e22fb)
by Julien
03:26
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.
src/TreeGen/TreeGen.php 3 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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Xoco70\KendoTournaments\TreeGen;
4 4
 
5
-use App\User;
6 5
 use Illuminate\Support\Collection;
7 6
 use Xoco70\KendoTournaments\Contracts\TreeGenerable;
8 7
 use Xoco70\KendoTournaments\Exceptions\TreeGenerationException;
Please login to merge, or discard this patch.
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -252,8 +252,9 @@  discard block
 block discarded – undo
252 252
     }
253 253
 
254 254
     /**
255
-     * @param $usersByArea
256
-     * @param $area
255
+     * @param Collection $usersByArea
256
+     * @param integer $area
257
+     * @param integer $round
257 258
      *
258 259
      */
259 260
     public function generateGroupsForRound($usersByArea, $area, $round)
@@ -283,7 +284,7 @@  discard block
 block discarded – undo
283 284
     /**
284 285
      * @param $fighters
285 286
      * @param $area
286
-     * @param $order
287
+     * @param integer $order
287 288
      * @param $round
288 289
      * @return FightersGroup
289 290
      */
@@ -351,6 +352,9 @@  discard block
 block discarded – undo
351 352
             : new Competitor();
352 353
     }
353 354
 
355
+    /**
356
+     * @param integer $groupSize
357
+     */
354 358
     public function createByeGroup($groupSize): Collection
355 359
     {
356 360
         $byeFighter = $this->createByeFighter();
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.
database/migrations/2014_10_12_000010_create_users_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('users', function (Blueprint $table) {
15
+        Schema::create('users', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('email')->unique();
Please login to merge, or discard this patch.
database/factories/UserFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-$factory->define(\Illuminate\Foundation\Auth\User::class, function (Faker\Generator $faker) {
4
+$factory->define(\Illuminate\Foundation\Auth\User::class, function(Faker\Generator $faker) {
5 5
     $email = $faker->email;
6 6
 
7 7
     return [
Please login to merge, or discard this patch.
database/factories/TournamentFactory.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\Tournament;
5 5
 use Xoco70\KendoTournaments\Models\Venue;
6 6
 
7
-$factory->define(Tournament::class, function (Faker\Generator $faker) {
7
+$factory->define(Tournament::class, function(Faker\Generator $faker) {
8 8
     $users = User::all()->pluck('id')->toArray();
9 9
     if (count($users) == 0) {
10 10
         $user = factory(\Illuminate\Foundation\Auth\User::class)->create();
Please login to merge, or discard this patch.
database/factories/VenueFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Xoco70\KendoTournaments\Models\Venue;
4 4
 
5
-$factory->define(Venue::class, function (Faker\Generator $faker) {
5
+$factory->define(Venue::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'venue_name' => $faker->colorName,
8 8
         'address'    => $faker->streetName,
Please login to merge, or discard this patch.