Passed
Pull Request — main (#19)
by
unknown
08:21 queued 03:55
created
database/migrations/2023_02_24_000000_create_comments_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up(): void
12 12
     {
13
-        Schema::create('comments', function (Blueprint $table) {
13
+        Schema::create('comments', function(Blueprint $table) {
14 14
             $table->id();
15 15
             if (config('commentify.user_uuid')) {
16 16
                 $table->foreignUuid('user_id')->constrained()->onDelete('cascade');
Please login to merge, or discard this patch.
database/migrations/2023_03_24_000000_create_comment_likes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up(): void
12 12
     {
13
-        Schema::create('comment_likes', function (Blueprint $table) {
13
+        Schema::create('comment_likes', function(Blueprint $table) {
14 14
             $table->id();
15 15
             if (config('commentify.user_uuid')) {
16 16
                 $table->foreignUuid('user_id')->nullable();
Please login to merge, or discard this patch.