Passed
Push — master ( 795d23...149f73 )
by Grant
06:52 queued 12s
created
app/Mail/ScreenCandidatesPrompt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
 
75 75
         $position = $this->job->getTranslations('title');
76 76
         $classification = $this->job->getClassificationMessageAttribute();
77
-        $subject = Lang::get('common/notifications/screen_candidates.subject', [ 'position' => $position['en'], 'classification' => $classification ]) . ' / ' . Lang::get('common/notifications/screen_candidates.subject', [ 'position' => $position['fr'], 'classification' => $classification ], 'fr');
77
+        $subject = Lang::get('common/notifications/screen_candidates.subject', ['position' => $position['en'], 'classification' => $classification]) . ' / ' . Lang::get('common/notifications/screen_candidates.subject', ['position' => $position['fr'], 'classification' => $classification], 'fr');
78 78
 
79 79
         return $this->subject($subject)
80 80
                     ->cc($hr_advisors_emails)
Please login to merge, or discard this patch.
routes/web.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -830,7 +830,7 @@  discard block
 block discarded – undo
830 830
         ->name('jobs.setJobStatus');
831 831
     Route::resource('jobs', 'Api\JobController')->only([
832 832
         'show', 'store', 'update', 'index'
833
-    ])->names([ // Specify custom names because default names collied with existing routes.
833
+    ])->names([// Specify custom names because default names collied with existing routes.
834 834
         'show' => 'jobs.show',
835 835
         'store' => 'jobs.store',
836 836
         'update' => 'jobs.update',
@@ -843,7 +843,7 @@  discard block
 block discarded – undo
843 843
 
844 844
     Route::resource('managers', 'Api\ManagerController')->only([
845 845
         'show', 'update'
846
-    ])->names([ // Specify custom names because default names collied with existing routes.
846
+    ])->names([// Specify custom names because default names collied with existing routes.
847 847
         'show' => 'managers.show',
848 848
         'update' => 'managers.update'
849 849
     ]);
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -773,8 +773,8 @@
 block discarded – undo
773 773
                     ->middleware('can:downloadApplicants,jobPoster')
774 774
                     ->name('admin.jobs.download.applicants');
775 775
 
776
-                 /* View Applicant Profile */
777
-                 Route::get('applicants/{applicant}', 'ApplicantProfileController@profile')
776
+                    /* View Applicant Profile */
777
+                    Route::get('applicants/{applicant}', 'ApplicantProfileController@profile')
778 778
                     ->middleware('can:view,applicant')
779 779
                     ->name('admin.applicants.profile');
780 780
             }
Please login to merge, or discard this patch.