Passed
Push — npm/audit-fix ( 9e66ec )
by Yonathan
29:50 queued 14:40
created
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.
app/Models/AssessmentPlanNotification.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
     /**
41 41
      * Get the JobPoster relationship
42 42
      */
43
-    public function job_poster()
43
+    public function job_poster ()
44 44
     {
45
-        return $this->belongsTo(\App\Models\JobPoster::class);
45
+        return $this->belongsTo (\App\Models\JobPoster::class);
46 46
     }
47 47
 }
Please login to merge, or discard this patch.
app/Models/JobPosterQuestion.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,13 +36,13 @@
 block discarded – undo
36 36
     ];
37 37
     protected $fillable = [];
38 38
 
39
-    public function job_poster() //phpcs:ignore
39
+    public function job_poster () //phpcs:ignore
40 40
     {
41
-        return $this->belongsTo(\App\Models\JobPoster::class);
41
+        return $this->belongsTo (\App\Models\JobPoster::class);
42 42
     }
43 43
 
44
-    public function job_application_answers() //phpcs:ignore
44
+    public function job_application_answers () //phpcs:ignore
45 45
     {
46
-        return $this->hasMany(\App\Models\JobApplicationAnswer::class, 'job_poster_questions_id');
46
+        return $this->hasMany (\App\Models\JobApplicationAnswer::class, 'job_poster_questions_id');
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
app/Notifications/ResetPasswordNotification.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @param  string  $token
33 33
      * @return void
34 34
      */
35
-    public function __construct($token)
35
+    public function __construct ($token)
36 36
     {
37 37
         $this->token = $token;
38 38
     }
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      * @param  mixed  $notifiable
44 44
      * @return array
45 45
      */
46
-    public function via($notifiable)
46
+    public function via ($notifiable)
47 47
     {
48 48
         return ['mail'];
49 49
     }
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
      * @param  mixed  $notifiable
55 55
      * @return \Illuminate\Notifications\Messages\MailMessage
56 56
      */
57
-    public function toMail($notifiable)
57
+    public function toMail ($notifiable)
58 58
     {
59 59
         return (new MailMessage)
60
-            ->subject(Lang::get('common/notifications/password_reset.subject'))
61
-            ->greeting(Lang::get('common/notifications/password_reset.greeting'))
62
-            ->line(Lang::get('common/notifications/password_reset.line_1'))
63
-            ->action(Lang::get('common/notifications/password_reset.action'), url(route('password.reset', $this->token, false)))
64
-            ->line(Lang::get('common/notifications/password_reset.line_2'))
65
-            ->salutation(Lang::get('common/notifications/password_reset.salutation', ['name' => config('mail.from.name')]));
60
+            ->subject (Lang::get ('common/notifications/password_reset.subject'))
61
+            ->greeting (Lang::get ('common/notifications/password_reset.greeting'))
62
+            ->line (Lang::get ('common/notifications/password_reset.line_1'))
63
+            ->action (Lang::get ('common/notifications/password_reset.action'), url (route ('password.reset', $this->token, false)))
64
+            ->line (Lang::get ('common/notifications/password_reset.line_2'))
65
+            ->salutation (Lang::get ('common/notifications/password_reset.salutation', ['name' => config ('mail.from.name')]));
66 66
     }
67 67
 }
Please login to merge, or discard this patch.
app/Mail/JobPosterReviewRequested.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      *
44 44
      * @return void
45 45
      */
46
-    public function __construct(JobPoster $jobPoster, User $manager)
46
+    public function __construct (JobPoster $jobPoster, User $manager)
47 47
     {
48 48
         $this->jobPoster = $jobPoster;
49 49
         $this->manager = $manager;
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
      *
55 55
      * @return $this
56 56
      */
57
-    public function build()
57
+    public function build ()
58 58
     {
59
-        return $this->text('emails.job_posters.review_requested_plain');
59
+        return $this->text ('emails.job_posters.review_requested_plain');
60 60
     }
61 61
 }
Please login to merge, or discard this patch.