@@ -40,7 +40,7 @@ |
||
40 | 40 | 'searchLogic' => function ($query, $column, $searchTerm) { |
41 | 41 | $query->orWhereHas('user', function ($q) use ($searchTerm) { |
42 | 42 | $q->where('first_name', 'ilike', '%'.$searchTerm.'%') |
43 | - ->orWhere('last_name', 'ilike', '%'.$searchTerm.'%'); |
|
43 | + ->orWhere('last_name', 'ilike', '%'.$searchTerm.'%'); |
|
44 | 44 | }); |
45 | 45 | } |
46 | 46 | ]); |
@@ -39,8 +39,8 @@ discard block |
||
39 | 39 | 'label' => 'Full Name', |
40 | 40 | 'searchLogic' => function ($query, $column, $searchTerm) { |
41 | 41 | $query->orWhereHas('user', function ($q) use ($searchTerm) { |
42 | - $q->where('first_name', 'ilike', '%'.$searchTerm.'%') |
|
43 | - ->orWhere('last_name', 'ilike', '%'.$searchTerm.'%'); |
|
42 | + $q->where('first_name', 'ilike', '%' . $searchTerm . '%') |
|
43 | + ->orWhere('last_name', 'ilike', '%' . $searchTerm . '%'); |
|
44 | 44 | }); |
45 | 45 | } |
46 | 46 | ]); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | 'label' => 'Email', |
52 | 52 | 'searchLogic' => function ($query, $column, $searchTerm) { |
53 | 53 | $query->orWhereHas('user', function ($q) use ($searchTerm) { |
54 | - $q->where('email', 'ilike', '%'.$searchTerm.'%'); |
|
54 | + $q->where('email', 'ilike', '%' . $searchTerm . '%'); |
|
55 | 55 | }); |
56 | 56 | } |
57 | 57 | ]); |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | $files = Resource::all(); |
30 | 30 | foreach ($files as $file) { |
31 | 31 | array_push($resources, [ |
32 | - 'link' => asset(Storage::url($file->file)), |
|
33 | - 'title' => '', |
|
34 | - 'text' => $file->name, |
|
32 | + 'link' => asset(Storage::url($file->file)), |
|
33 | + 'title' => '', |
|
34 | + 'text' => $file->name, |
|
35 | 35 | ]); |
36 | 36 | } |
37 | 37 | |
@@ -44,11 +44,11 @@ discard block |
||
44 | 44 | $portal = WhichPortal::isHrPortal() ? 'hr' : 'manager'; |
45 | 45 | |
46 | 46 | return view('common/resources', [ |
47 | - // Localized strings. |
|
48 | - 'resources_template' => $resources_template, |
|
49 | - 'portal' => $portal, |
|
50 | - // List of resource downloads. |
|
51 | - 'resources' => $resources, |
|
47 | + // Localized strings. |
|
48 | + 'resources_template' => $resources_template, |
|
49 | + 'portal' => $portal, |
|
50 | + // List of resource downloads. |
|
51 | + 'resources' => $resources, |
|
52 | 52 | ]); |
53 | 53 | } |
54 | 54 | } |
@@ -75,9 +75,9 @@ |
||
75 | 75 | |
76 | 76 | $position = $this->job->getTranslations('title'); |
77 | 77 | $classification = $this->job->getClassificationMessageAttribute(); |
78 | - $subject = Lang::get('common/notifications/screen_candidates.subject', [ 'position' => $position['en'], 'classification' => $classification ], 'en') |
|
78 | + $subject = Lang::get('common/notifications/screen_candidates.subject', ['position' => $position['en'], 'classification' => $classification], 'en') |
|
79 | 79 | . ' / ' |
80 | - . Lang::get('common/notifications/screen_candidates.subject', [ 'position' => $position['fr'], 'classification' => $classification ], 'fr'); |
|
80 | + . Lang::get('common/notifications/screen_candidates.subject', ['position' => $position['fr'], 'classification' => $classification], 'fr'); |
|
81 | 81 | |
82 | 82 | return $this->subject($subject) |
83 | 83 | ->cc($hr_advisors_emails) |
@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | // Validate job application answer. |
31 | 31 | $validatedData = $request->validate([ |
32 | - 'answer' => 'required|nullable|string', |
|
32 | + 'answer' => 'required|nullable|string', |
|
33 | 33 | ]); |
34 | 34 | |
35 | 35 | // Update existing object with data and save to db. |
@@ -249,7 +249,7 @@ |
||
249 | 249 | $rules = $this->addNestedValidatorRules( |
250 | 250 | 'job_application_answers.*', |
251 | 251 | $answerValidator->rules(), |
252 | - [ 'job_application_answers.*.answer' => ['required', 'string', new WordLimitRule(250)]] |
|
252 | + ['job_application_answers.*.answer' => ['required', 'string', new WordLimitRule(250)]] |
|
253 | 253 | ); |
254 | 254 | |
255 | 255 | // Validate that each question has been answered. |
@@ -536,7 +536,7 @@ |
||
536 | 536 | * Attach steps to new application (version 2). |
537 | 537 | * |
538 | 538 | * @return void |
539 | - */ |
|
539 | + */ |
|
540 | 540 | public function attachSteps(): void |
541 | 541 | { |
542 | 542 | if ($this->touched_application_steps->isEmpty()) { |
@@ -190,14 +190,14 @@ discard block |
||
190 | 190 | if (!empty($skillsArray)) { |
191 | 191 | $lastSkill = end($skillsArray); |
192 | 192 | foreach ($skillsArray as $skillItem) { |
193 | - $skillsString .= $skillItem['skill'].' - '.$skillItem['level'].($skillItem == $lastSkill ? '.' : ', '); |
|
193 | + $skillsString .= $skillItem['skill'] . ' - ' . $skillItem['level'] . ($skillItem == $lastSkill ? '.' : ', '); |
|
194 | 194 | } |
195 | 195 | } |
196 | 196 | |
197 | 197 | $benefitsString = ''; |
198 | 198 | if (is_array($jobLang['structured_data']['benefits'])) { |
199 | 199 | foreach ($jobLang['structured_data']['benefits'] as $benefit) { |
200 | - $benefitsString .= $benefit.' '; |
|
200 | + $benefitsString .= $benefit . ' '; |
|
201 | 201 | } |
202 | 202 | } |
203 | 203 | |
@@ -205,12 +205,12 @@ discard block |
||
205 | 205 | if (is_array($jobPoster['job_poster_key_tasks'])) { |
206 | 206 | $lastTask = end($jobPoster['job_poster_key_tasks']); |
207 | 207 | foreach ($jobPoster['job_poster_key_tasks'] as $task) { |
208 | - $tasksString .= $task['description'].' '.($skillItem == $lastSkill ? '' : ' | '); |
|
208 | + $tasksString .= $task['description'] . ' ' . ($skillItem == $lastSkill ? '' : ' | '); |
|
209 | 209 | } |
210 | 210 | } |
211 | 211 | |
212 | - $securityClearanceString = $jobLang['structured_data']['security_clearance_requirement_level'].': ' |
|
213 | - .$jobPoster['security_clearance']['value'].'. ' |
|
212 | + $securityClearanceString = $jobLang['structured_data']['security_clearance_requirement_level'] . ': ' |
|
213 | + .$jobPoster['security_clearance']['value'] . '. ' |
|
214 | 214 | .$jobLang['structured_data']['security_clearance_requirement_description']; |
215 | 215 | |
216 | 216 | $structuredData = [ |
@@ -39,7 +39,7 @@ |
||
39 | 39 | 'application' => $application, |
40 | 40 | 'application_template' => Lang::get( |
41 | 41 | 'applicant/application_template', |
42 | - ['security_clearance' => $jobPoster->security_clearance->value ] |
|
42 | + ['security_clearance' => $jobPoster->security_clearance->value] |
|
43 | 43 | ), |
44 | 44 | 'jobPoster' => $jobPoster, |
45 | 45 | ] |
@@ -15,7 +15,7 @@ |
||
15 | 15 | * |
16 | 16 | * @param \App\Models\JobApplication $application Incoming Application object. |
17 | 17 | * @return \Illuminate\Http\Response |
18 | - */ |
|
18 | + */ |
|
19 | 19 | public function show(JobApplication $jobApplication, string $requestedStep = null) |
20 | 20 | { |
21 | 21 | $jobApplicationSteps = $jobApplication->jobApplicationSteps(); |
@@ -19,13 +19,13 @@ |
||
19 | 19 | class TouchedApplicationStep extends BaseModel |
20 | 20 | { |
21 | 21 | protected $casts = [ |
22 | - 'job_application_id' => 'int', |
|
23 | - 'step_id' => 'int', |
|
24 | - 'touched' => 'boolean', |
|
22 | + 'job_application_id' => 'int', |
|
23 | + 'step_id' => 'int', |
|
24 | + 'touched' => 'boolean', |
|
25 | 25 | ]; |
26 | 26 | |
27 | 27 | protected $fillable = [ |
28 | - 'touched' |
|
28 | + 'touched' |
|
29 | 29 | ]; |
30 | 30 | |
31 | 31 | public function job_application() //phpcs:ignore |