Passed
Pull Request — main (#34)
by PRATIK
04:46
created
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.
database/migrations/2023_05_10_082941_create_pages_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('pages', function (Blueprint $table) {
14
+        Schema::create('pages', 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_09_090229_create_temporary_uploads_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('temporary_uploads', function (Blueprint $table) {
11
+        Schema::create('temporary_uploads', function(Blueprint $table) {
12 12
             $table->id();
13 13
             $table->string('session_id');
14 14
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2023_05_11_074538_create_messages_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('messages', function (Blueprint $table) {
16
+        Schema::create('messages', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->string('email')->nullable();
Please login to merge, or discard this patch.