Passed
Pull Request — main (#33)
by PRATIK
07:17 queued 03:32
created
database/migrations/2023_05_10_052830_create_clients_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('clients', function (Blueprint $table) {
14
+        Schema::create('clients', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('slug');
Please login to merge, or discard this patch.
database/migrations/2019_08_19_000000_create_failed_jobs_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('failed_jobs', function (Blueprint $table) {
14
+        Schema::create('failed_jobs', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('uuid')->unique();
17 17
             $table->text('connection');
Please login to merge, or discard this patch.
database/migrations/2023_05_11_093045_create_careers_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('careers', function (Blueprint $table) {
16
+        Schema::create('careers', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('title');
19 19
             $table->string('slug')->unique();
Please login to merge, or discard this patch.
database/migrations/2023_05_09_100101_create_faqs_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('faqs', function (Blueprint $table) {
14
+        Schema::create('faqs', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->text('question');
17 17
             $table->longText('answer');
Please login to merge, or discard this patch.
database/migrations/2023_05_25_103403_create_inquiries_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('inquiries', function (Blueprint $table) {
14
+        Schema::create('inquiries', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('phone');
Please login to merge, or discard this patch.
database/migrations/2023_05_09_085614_create_media_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(): void
10 10
     {
11
-        Schema::create('media', function (Blueprint $table) {
11
+        Schema::create('media', function(Blueprint $table) {
12 12
             $table->id();
13 13
 
14 14
             $table->morphs('model');
Please login to merge, or discard this patch.
database/migrations/2023_05_11_093046_create_applications_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('applications', function (Blueprint $table) {
16
+        Schema::create('applications', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->foreignId('career_id')->constrained()->cascadeOnDelete();
19 19
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2023_05_15_075530_create_tags_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('tags', function (Blueprint $table) {
14
+        Schema::create('tags', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('slug');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_055608_create_notices_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('notices', function (Blueprint $table) {
14
+        Schema::create('notices', 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.