Completed
Push — master ( 4de8ed...77e04a )
by Julien
05:04
created
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\LaravelTournaments\Models\Championship;
5 5
 use Xoco70\LaravelTournaments\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/factories/CategoryFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use Xoco70\LaravelTournaments\Models\Category as Cat;
5 5
 
6
-$factory->define(Cat::class, function (Faker\Generator $faker) {
6
+$factory->define(Cat::class, function(Faker\Generator $faker) {
7 7
     $name = ['categories.junior',
8 8
         'categories.junior_team',
9 9
         'categories.men_single',
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\LaravelTournaments\Models\Tournament;
5 5
 use Xoco70\LaravelTournaments\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/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\LaravelTournaments\Models\Championship;
6 6
 use Xoco70\LaravelTournaments\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 = Cat::all()->pluck('id')->toArray();
11 11
 
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000000_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.
src/TreeGen/PlayOffTreeGen.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      *
43 43
      * @param $fightersByEntity
44 44
      *
45
-     * @return mixed
45
+     * @return Collection
46 46
      */
47 47
     protected function chunkAndShuffle(Collection $fightersByEntity)
48 48
     {
Please login to merge, or discard this patch.
database/factories/TeamFactory.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\LaravelTournaments\Models\Team;
4 4
 
5
-$factory->define(Team::class, function (Faker\Generator $faker) {
5
+$factory->define(Team::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'name'            => $faker->name,
8 8
         'championship_id' => 2,
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\LaravelTournaments\Models\Championship;
5 5
 use Xoco70\LaravelTournaments\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
     $championshipId = $faker->randomElement($tcs);
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000010_add_users_fields_table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('users', function ($table) {
16
+        Schema::table('users', function($table) {
17 17
             $table->string('firstname')->default('firstname');
18 18
             $table->string('lastname')->default('lastname');
19 19
         });
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
     {
29 29
         DBHelpers::setFKCheckOff();
30 30
         if (Schema::hasColumn('users', 'firstname')) {
31
-            Schema::table('users', function (Blueprint $table) {
31
+            Schema::table('users', function(Blueprint $table) {
32 32
                 $table->dropColumn('firstname');
33 33
             });
34 34
         }
35 35
         if (Schema::hasColumn('users', 'lastname')) {
36
-            Schema::table('users', function (Blueprint $table) {
36
+            Schema::table('users', function(Blueprint $table) {
37 37
                 $table->dropColumn('lastname');
38 38
             });
39 39
         }
Please login to merge, or discard this patch.