Test Failed
Push — master ( 553f5c...618ad8 )
by Julien
03:16
created
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(\App\User::class, function (Faker\Generator $faker) {
4
+$factory->define(\App\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/2014_10_12_000001_alter_lt_users_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function up()
16 16
     {
17 17
         if (!Schema::hasTable(config('laravel-tournaments.user.table'))) {
18
-            Schema::create('users', function (Blueprint $table) {
18
+            Schema::create('users', function(Blueprint $table) {
19 19
                 $table->increments('id');
20 20
                 $table->string('name');
21 21
                 $table->string('firstname')->default('firstname');
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
                 $table->timestamps();
26 26
             });
27 27
         } else {
28
-            Schema::table(config('laravel-tournaments.user.table'), function (Blueprint $table) {
28
+            Schema::table(config('laravel-tournaments.user.table'), function(Blueprint $table) {
29 29
 
30 30
                 if (!Schema::hasColumn(config('laravel-tournaments.user.table'), 'name')) {
31 31
                     $table->string('name')->default('name');
Please login to merge, or discard this patch.