@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create('user_email_configurations', function (Blueprint $table) { |
|
14 | + Schema::create('user_email_configurations', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->foreignId('user_id')->constrained('users'); |
17 | 17 | $table->string('name'); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | $router = $this->app->make(Router::class); |
22 | 22 | $router->aliasMiddleware('dynamic.mail.config', DynamicMailConfig::class); |
23 | 23 | |
24 | - $this->loadMigrationsFrom(self::DB); |
|
24 | + $this->loadMigrationsFrom(self::DB); |
|
25 | 25 | |
26 | 26 | $this->publishes([ |
27 | 27 | self::CONFIG => config_path('dynamicmailconfig.php'), |
@@ -12,7 +12,7 @@ |
||
12 | 12 | |
13 | 13 | public function setUp(): void |
14 | 14 | { |
15 | - parent::setUp(); |
|
15 | + parent::setUp(); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | protected function defineDatabaseMigrations() |