Passed
Branch main (0e78aa)
by ikechukwu
11:32
created
src/migrations/2023_03_16_071601_create_user_email_configurations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/DynamicMailConfigServiceProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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'),
Please login to merge, or discard this patch.
Tests/TestCase.php 1 patch
Indentation   +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 setUp(): void
14 14
     {
15
-      parent::setUp();
15
+        parent::setUp();
16 16
     }
17 17
 
18 18
     protected function defineDatabaseMigrations()
Please login to merge, or discard this patch.