@@ -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. |
@@ -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 $step = null) |
20 | 20 | { |
21 | 21 | $requestedStep = $step; |
@@ -19,13 +19,13 @@ |
||
19 | 19 | class TouchedApplicationStep extends BaseModel |
20 | 20 | { |
21 | 21 | protected $casts = [ |
22 | - 'job_application_id' => 'int', |
|
23 | - 'skill_id' => 'int', |
|
24 | - 'touched' => 'boolean', |
|
22 | + 'job_application_id' => 'int', |
|
23 | + 'skill_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 |
@@ -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()) { |