Passed
Push — task/common-translation-packag... ( 61d9a2...d137e8 )
by Grant
18:45 queued 08:27
created
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/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.
app/Http/ViewComposers/FooterComposer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
      * @param  View  $view
22 22
      * @return void
23 23
      */
24
-    public function compose(View $view)
24
+    public function compose (View $view)
25 25
     {
26
-        $view->with('footer', Lang::get('common/footer'))
27
-            ->with('date_modified', humanizeDate(new Date(self::DATE_MODIFIED, Config::get('app.local_timezone'))));
26
+        $view->with ('footer', Lang::get ('common/footer'))
27
+            ->with ('date_modified', humanizeDate (new Date (self::DATE_MODIFIED, Config::get ('app.local_timezone'))));
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/AlertComposer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
      * @param  View  $view
14 14
      * @return void
15 15
      */
16
-    public function compose(View $view)
16
+    public function compose (View $view)
17 17
     {
18
-        $view->with('alert', Lang::get('common/alert'));
18
+        $view->with ('alert', Lang::get ('common/alert'));
19 19
     }
20 20
 }
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
app/Http/ViewComposers/SkillComposer.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -26,19 +26,19 @@
 block discarded – undo
26 26
      *
27 27
      * @return void
28 28
      */
29
-    public function compose(View $view) : void
29
+    public function compose (View $view) : void
30 30
     {
31 31
         if (!$this->skillLevels) {
32
-            $this->skillLevels = SkillLevel::all();
32
+            $this->skillLevels = SkillLevel::all ();
33 33
         }
34 34
 
35 35
         if (!$this->skills) {
36
-            $this->skills = Skill::all();
36
+            $this->skills = Skill::all ();
37 37
         }
38 38
 
39
-        $view->with('skills', $this->skills);
40
-        $view->with('skill_levels', $this->skillLevels);
41
-        $view->with('skill_template', Lang::get('common/skills'));
42
-        $view->with('skills_modal', Lang::get('common/skills_modals'));
39
+        $view->with ('skills', $this->skills);
40
+        $view->with ('skill_levels', $this->skillLevels);
41
+        $view->with ('skill_template', Lang::get ('common/skills'));
42
+        $view->with ('skills_modal', Lang::get ('common/skills_modals'));
43 43
     }
44 44
 }
Please login to merge, or discard this patch.