Passed
Push — npm/audit-fix ( 9e66ec )
by Yonathan
29:50 queued 14:40
created
app/Models/Lookup/VeteranStatus.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
 
20 20
     protected $fillable = [];
21 21
 
22
-    public function job_applications() {
23
-        return $this->hasMany(\App\Models\JobApplication::class);
22
+    public function job_applications () {
23
+        return $this->hasMany (\App\Models\JobApplication::class);
24 24
     }
25 25
 
26 26
 }
Please login to merge, or discard this patch.
app/Models/Lookup/RelationshipTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function relationship() {
32
-        return $this->belongsTo(\App\Models\Lookup\Relationship::class);
31
+    public function relationship () {
32
+        return $this->belongsTo (\App\Models\Lookup\Relationship::class);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ReviewStatus.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
 
21 21
     protected $fillable = [];
22 22
 
23
-    public function getTranslationAttribute() {
24
-        return Lang::get('common/lookup/review_status')[$this->name];
23
+    public function getTranslationAttribute () {
24
+        return Lang::get ('common/lookup/review_status')[$this->name];
25 25
     }
26 26
 
27 27
 }
Please login to merge, or discard this patch.
app/Models/Lookup/SkillType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         'name'
21 21
     ];
22 22
 
23
-    public function skills() {
24
-        return $this->hasMany(\App\Models\Skill::class);
23
+    public function skills () {
24
+        return $this->hasMany (\App\Models\Skill::class);
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ApplicationStatusTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function application_status() {
32
-        return $this->belongsTo(\App\Models\Lookup\ApplicationStatus::class);
31
+    public function application_status () {
32
+        return $this->belongsTo (\App\Models\Lookup\ApplicationStatus::class);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ExperienceLevel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@
 block discarded – undo
32 32
     public $translatedAttributes = ['value'];
33 33
     protected $fillable = [];
34 34
 
35
-    public function experience_level_translations() //phpcs:ignore
35
+    public function experience_level_translations () //phpcs:ignore
36 36
     {
37
-        return $this->hasMany(\App\Models\Lookup\ExperienceLevelTranslation::class);
37
+        return $this->hasMany (\App\Models\Lookup\ExperienceLevelTranslation::class);
38 38
     }
39 39
 
40
-    public function skill_declarations() //phpcs:ignore
40
+    public function skill_declarations () //phpcs:ignore
41 41
     {
42
-        return $this->hasMany(\App\Models\SkillDeclaration::class);
42
+        return $this->hasMany (\App\Models\SkillDeclaration::class);
43 43
     }
44 44
 }
Please login to merge, or discard this patch.
app/Models/Lookup/LanguageRequirementTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function language_requirement() {
32
-        return $this->belongsTo(\App\Models\Lookup\LanguageRequirement::class);
31
+    public function language_requirement () {
32
+        return $this->belongsTo (\App\Models\Lookup\LanguageRequirement::class);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
app/Models/Lookup/JobTermTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function job_term() {
32
-        return $this->belongsTo(\App\Models\Lookup\JobTerm::class);
31
+    public function job_term () {
32
+        return $this->belongsTo (\App\Models\Lookup\JobTerm::class);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
app/Models/Lookup/CriteriaTypeTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
 
26 26
     protected $fillable = [];
27 27
 
28
-    public function criteria_type() {
29
-        return $this->belongsTo(\App\Models\CriteriaType::class);
28
+    public function criteria_type () {
29
+        return $this->belongsTo (\App\Models\CriteriaType::class);
30 30
     }
31 31
 
32 32
 }
Please login to merge, or discard this patch.