Passed
Branch removeCase (d91e80)
by Julien
06:02
created
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/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/migrations/2015_11_01_171758_create_Venue_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('venue', function (Blueprint $table) {
15
+        Schema::create('venue', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('venue_name');
18 18
             $table->string('address')->nullable();
Please login to merge, or discard this patch.
database/migrations/2015_12_23_025811_create_ChampionshipSettings_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('championship_settings', function (Blueprint $table) {
15
+        Schema::create('championship_settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('alias')->nullable();
18 18
             $table->integer('championship_id')->unsigned()->unique();
Please login to merge, or discard this patch.
database/migrations/2017_02_12_000437_create_FightersGroup_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('fighters_group_team', function (Blueprint $table) {
16
+        Schema::create('fighters_group_team', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('team_id')->unsigned()->nullable()->index();
19 19
             $table->integer('fighters_group_id')->unsigned()->index();
Please login to merge, or discard this patch.
migrations/2017_02_12_000428_create_FightersGroup_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('fighters_group_competitor', function (Blueprint $table) {
16
+        Schema::create('fighters_group_competitor', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('competitor_id')->unsigned()->nullable()->index();
19 19
             $table->integer('fighters_group_id')->unsigned()->index();
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.
database/migrations/2016_95_04_171759_create_Team_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 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 12
             $table->integer('short_id')->unsigned()->nullable();
13 13
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2016_11_23_125509_create_Fight_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('fight', function (Blueprint $table) {
16
+        Schema::create('fight', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('short_id')->unsigned()->nullable();
19 19
             $table->integer('fighters_group_id')->unsigned()->index();
Please login to merge, or discard this patch.