@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create(config('promocodes.table', 'promocodes'), function (Blueprint $table) { |
|
| 15 | + Schema::create(config('promocodes.table', 'promocodes'), function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | 17 | |
| 18 | 18 | $table->integer('user_id')->unsigned()->nullable(); |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | __DIR__.'/config/promocodes.php', 'promocodes' |
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | - $this->app->singleton('promocodes', function ($app) { |
|
| 36 | + $this->app->singleton('promocodes', function($app) { |
|
| 37 | 37 | return new Promocodes(); |
| 38 | 38 | }); |
| 39 | 39 | } |