Passed
Push — main ( 7f267a...acaf09 )
by PRATIK
10:40 queued 06:44
created
database/migrations/2023_05_11_053828_create_payments_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('payments', function (Blueprint $table) {
14
+        Schema::create('payments', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->foreignId('user_id')->nullable()->constrained()->nullOnDelete();
17 17
             $table->integer('type')->default(1);
Please login to merge, or discard this patch.
database/migrations/2023_05_11_104920_create_attributes_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('attributes', function (Blueprint $table) {
14
+        Schema::create('attributes', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('code')->unique();
17 17
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2023_05_09_092656_create_facilities_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('facilities', function (Blueprint $table) {
14
+        Schema::create('facilities', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('slug');
17 17
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_084048_create_testimonials_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('testimonials', function (Blueprint $table) {
14
+        Schema::create('testimonials', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('email')->nullable();
Please login to merge, or discard this patch.
database/migrations/2023_05_10_110230_create_packages_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('packages', function (Blueprint $table) {
14
+        Schema::create('packages', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('slug');
17 17
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2023_05_11_113821_create_products_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('products', function (Blueprint $table) {
14
+        Schema::create('products', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('sku')->unique();
17 17
             $table->string('name')->unique();
Please login to merge, or discard this patch.
database/migrations/2023_05_12_090349_create_attribute_product_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('attribute_product', function (Blueprint $table) {
14
+        Schema::create('attribute_product', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->unsignedBigInteger('attribute_id');
17 17
             $table->unsignedBigInteger('product_id');
Please login to merge, or discard this patch.
database/migrations/2023_05_09_101723_create_counters_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('counters', function (Blueprint $table) {
14
+        Schema::create('counters', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('icon');
Please login to merge, or discard this patch.
migrations/2019_12_14_000001_create_personal_access_tokens_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('personal_access_tokens', function (Blueprint $table) {
14
+        Schema::create('personal_access_tokens', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->morphs('tokenable');
17 17
             $table->string('name');
Please login to merge, or discard this patch.