| @@ -12,7 +12,7 @@ discard block | ||
| 12 | 12 | */ | 
| 13 | 13 | public function up() | 
| 14 | 14 |      { | 
| 15 | -        Schema::table('users', function ($table) { | |
| 15 | +        Schema::table('users', function($table) { | |
| 16 | 16 |              $table->string('locale')->default(config('localizer.default_lang')); | 
| 17 | 17 | }); | 
| 18 | 18 | } | 
| @@ -24,7 +24,7 @@ discard block | ||
| 24 | 24 | */ | 
| 25 | 25 | public function down() | 
| 26 | 26 |      { | 
| 27 | -        Schema::table('users', function ($table) { | |
| 27 | +        Schema::table('users', function($table) { | |
| 28 | 28 |              $table->dropColumn('locale'); | 
| 29 | 29 | }); | 
| 30 | 30 | } |