Passed
Push — npm/audit-fix ( 9e66ec )
by Yonathan
29:50 queued 14:40
created
app/Models/Lookup/ApplicantProfileQuestion.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,18 +28,18 @@
 block discarded – undo
28 28
 
29 29
     protected $fillable = [];
30 30
 
31
-    public function applicant_profile_answers() {
32
-        return $this->hasMany(\App\Models\ApplicantProfileAnswer::class);
31
+    public function applicant_profile_answers () {
32
+        return $this->hasMany (\App\Models\ApplicantProfileAnswer::class);
33 33
     }
34 34
 
35 35
     // Accessors
36 36
 
37
-    public function getQuestionAttribute() {
38
-        return Lang::get('common/lookup/applicant_profile_questions')[$this->name]['question'];
37
+    public function getQuestionAttribute () {
38
+        return Lang::get ('common/lookup/applicant_profile_questions')[$this->name]['question'];
39 39
     }
40 40
 
41
-    public function getDescriptionAttribute() {
42
-        return Lang::get('common/lookup/applicant_profile_questions')[$this->name]['description'];
41
+    public function getDescriptionAttribute () {
42
+        return Lang::get ('common/lookup/applicant_profile_questions')[$this->name]['description'];
43 43
     }
44 44
 
45 45
 }
Please login to merge, or discard this patch.
app/Models/JobPosterKeyTask.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
     ];
35 35
     protected $fillable = [];
36 36
 
37
-    public function job_poster() //phpcs:ignore
37
+    public function job_poster () //phpcs:ignore
38 38
     {
39
-        return $this->belongsTo(\App\Models\JobPoster::class);
39
+        return $this->belongsTo (\App\Models\JobPoster::class);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
app/Models/Classification.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
25 25
         'key'
26 26
     ];
27 27
 
28
-    public function skills()
28
+    public function skills ()
29 29
     {
30
-        return $this->belongsToMany(\App\Models\Skill::class)->withTimestamps();
30
+        return $this->belongsToMany (\App\Models\Skill::class)->withTimestamps ();
31 31
     }
32 32
 
33
-    public function job_posters() //phpcs:ignore
33
+    public function job_posters () //phpcs:ignore
34 34
     {
35
-        return $this->belongsToMany(\App\Models\JobPoster::class);
35
+        return $this->belongsToMany (\App\Models\JobPoster::class);
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
app/Models/JobPosterTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
         'culture_special',
60 60
     ];
61 61
 
62
-    public function job_poster()
62
+    public function job_poster ()
63 63
     {
64
-        return $this->belongsTo(\App\Models\JobPoster::class);
64
+        return $this->belongsTo (\App\Models\JobPoster::class);
65 65
     }
66 66
 }
Please login to merge, or discard this patch.
app/Models/ManagerTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
         'learning_path'
47 47
     ];
48 48
 
49
-    public function manager() {
50
-        return $this->belongsTo(\App\Models\Manager::class);
49
+    public function manager () {
50
+        return $this->belongsTo (\App\Models\Manager::class);
51 51
     }
52 52
 
53 53
 }
Please login to merge, or discard this patch.
app/Models/WorkEnvironment.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,28 +47,28 @@
 block discarded – undo
47 47
         'flexible_hours_frequency'
48 48
     ];
49 49
 
50
-    public function manager()
50
+    public function manager ()
51 51
     {
52
-        return $this->belongsTo(\App\Models\Manager::class);
52
+        return $this->belongsTo (\App\Models\Manager::class);
53 53
     }
54 54
 
55
-    public function telework_allowed_frequency() //phpcs:ignore
55
+    public function telework_allowed_frequency () //phpcs:ignore
56 56
     {
57
-        return $this->belongsTo(\App\Models\Lookup\Frequency::class);
57
+        return $this->belongsTo (\App\Models\Lookup\Frequency::class);
58 58
     }
59 59
 
60
-    public function flexible_hours_frequency() //phpcs:ignore
60
+    public function flexible_hours_frequency () //phpcs:ignore
61 61
     {
62
-        return $this->belongsTo(\App\Models\Lookup\Frequency::class);
62
+        return $this->belongsTo (\App\Models\Lookup\Frequency::class);
63 63
     }
64 64
 
65
-    public function workplace_photo_captions() //phpcs:ignore
65
+    public function workplace_photo_captions () //phpcs:ignore
66 66
     {
67
-        return $this->hasMany(\App\Models\WorkplacePhotoCaption::class);
67
+        return $this->hasMany (\App\Models\WorkplacePhotoCaption::class);
68 68
     }
69 69
 
70
-    public function work_environment_translations() //phpcs:ignore
70
+    public function work_environment_translations () //phpcs:ignore
71 71
     {
72
-        return $this->hasMany(\App\Models\WorkEnvironmentTranslation::class);
72
+        return $this->hasMany (\App\Models\WorkEnvironmentTranslation::class);
73 73
     }
74 74
 }
Please login to merge, or discard this patch.
app/Models/Skill.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -58,19 +58,19 @@  discard block
 block discarded – undo
58 58
         'description',
59 59
     ];
60 60
 
61
-    public function skill_type() // phpcs:ignore
61
+    public function skill_type () // phpcs:ignore
62 62
     {
63
-        return $this->belongsTo(\App\Models\Lookup\SkillType::class);
63
+        return $this->belongsTo (\App\Models\Lookup\SkillType::class);
64 64
     }
65 65
 
66
-    public function skill_declarations() // phpcs:ignore
66
+    public function skill_declarations () // phpcs:ignore
67 67
     {
68
-        return $this->hasMany(\App\Models\SkillDeclaration::class);
68
+        return $this->hasMany (\App\Models\SkillDeclaration::class);
69 69
     }
70 70
 
71
-    public function classifications() // phpcs:ignore
71
+    public function classifications () // phpcs:ignore
72 72
     {
73
-        return $this->belongsToMany(\App\Models\Classification::class)->withTimestamps();
73
+        return $this->belongsToMany (\App\Models\Classification::class)->withTimestamps ();
74 74
     }
75 75
 
76 76
     /**
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      *
81 81
      * @return void
82 82
      */
83
-    public function setIsCultureSkillAttribute($value) : void
83
+    public function setIsCultureSkillAttribute ($value) : void
84 84
     {
85 85
         if ($value === null) {
86 86
             $value = false;
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      *
96 96
      * @return void
97 97
      */
98
-    public function setIsFutureSkillAttribute($value) : void
98
+    public function setIsFutureSkillAttribute ($value) : void
99 99
     {
100 100
         if ($value === null) {
101 101
             $value = false;
@@ -109,9 +109,9 @@  discard block
 block discarded – undo
109 109
      *
110 110
      * @return mixed[]
111 111
      */
112
-    public function toArray() : array
112
+    public function toArray () : array
113 113
     {
114
-        $array = parent::toArray();
114
+        $array = parent::toArray ();
115 115
         $array['name'] = $this->name;
116 116
         $array['description'] = $this->description;
117 117
         return $array;
Please login to merge, or discard this patch.
app/Models/WorkplacePhotoCaption.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@
 block discarded – undo
32 32
         'description'
33 33
     ];
34 34
 
35
-    public function work_environment() {
36
-        return $this->belongsTo(\App\Models\WorkEnvironment::class);
35
+    public function work_environment () {
36
+        return $this->belongsTo (\App\Models\WorkEnvironment::class);
37 37
     }
38 38
 
39
-    public function workplace_photo() {
40
-        return $this->belongsTo(\App\Models\WorkplacePhoto::class);
39
+    public function workplace_photo () {
40
+        return $this->belongsTo (\App\Models\WorkplacePhoto::class);
41 41
     }
42 42
 
43 43
 }
Please login to merge, or discard this patch.
app/Models/ApplicationReview.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,15 +37,15 @@
 block discarded – undo
37 37
      */
38 38
     protected $with = ['review_status'];
39 39
 
40
-    public function job_application() {
41
-        return $this->belongsTo(JobApplication::class);
40
+    public function job_application () {
41
+        return $this->belongsTo (JobApplication::class);
42 42
     }
43 43
 
44
-    public function review_status() {
45
-        return $this->belongsTo(ReviewStatus::class);
44
+    public function review_status () {
45
+        return $this->belongsTo (ReviewStatus::class);
46 46
     }
47 47
 
48
-    public function getStatusAttribute() {
48
+    public function getStatusAttribute () {
49 49
         return $this->review_status->translation;
50 50
     }
51 51
 }
Please login to merge, or discard this patch.