Passed
Push — feature/improve-applicant-list ( 5b975f...3fd796 )
by Chris
06:07
created
database/seeds/DevSeeder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
             'job_poster_id' => $hrClosedJob->id
221 221
         ]);
222 222
 
223
-         // Create first parent skill category.
223
+            // Create first parent skill category.
224 224
         $skillCategoryParentFirst = factory(SkillCategory::class, 1)->create(['depth' => 1]);
225 225
 
226 226
         // Create second parent skill category.
Please login to merge, or discard this patch.
app/Http/Requests/BatchUpdateExperienceSkill.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
     public function rules()
42 42
     {
43 43
         return [
44
-          '*.id' => 'required|exists:App\Models\ExperienceSkill,id',
45
-          '*.justification' => 'nullable|string',
44
+            '*.id' => 'required|exists:App\Models\ExperienceSkill,id',
45
+            '*.justification' => 'nullable|string',
46 46
         ];
47 47
     }
48 48
 }
Please login to merge, or discard this patch.