@@ -28,6 +28,6 @@ |
||
28 | 28 | |
29 | 29 | public function job_posters() //phpcs:ignore |
30 | 30 | { |
31 | - return $this->hasMany(\App\Models\JobPoster::class); |
|
31 | + return $this->hasMany (\App\Models\JobPoster::class); |
|
32 | 32 | } |
33 | 33 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | protected $fillable = []; |
21 | 21 | |
22 | 22 | public function job_applications() { |
23 | - return $this->hasMany(\App\Models\JobApplication::class); |
|
23 | + return $this->hasMany (\App\Models\JobApplication::class); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | } |
@@ -27,6 +27,6 @@ |
||
27 | 27 | |
28 | 28 | public function references() |
29 | 29 | { |
30 | - return $this->hasMany(\App\Models\Reference::class); |
|
30 | + return $this->hasMany (\App\Models\Reference::class); |
|
31 | 31 | } |
32 | 32 | } |
@@ -27,6 +27,6 @@ |
||
27 | 27 | |
28 | 28 | public function skill_declarations() //phpcs:ignore |
29 | 29 | { |
30 | - return $this->hasMany(\App\Models\SkillDeclaration::class); |
|
30 | + return $this->hasMany (\App\Models\SkillDeclaration::class); |
|
31 | 31 | } |
32 | 32 | } |
@@ -30,6 +30,6 @@ |
||
30 | 30 | */ |
31 | 31 | public function assessments() // phpcs:ignore |
32 | 32 | { |
33 | - return $this->hasMany(Assessment::class); |
|
33 | + return $this->hasMany (Assessment::class); |
|
34 | 34 | } |
35 | 35 | } |
@@ -20,6 +20,6 @@ |
||
20 | 20 | protected $fillable = []; |
21 | 21 | |
22 | 22 | public function courses() { |
23 | - return $this->hasMany(\App\Models\Course::class); |
|
23 | + return $this->hasMany (\App\Models\Course::class); |
|
24 | 24 | } |
25 | 25 | } |
@@ -19,6 +19,6 @@ |
||
19 | 19 | protected $fillable = []; |
20 | 20 | |
21 | 21 | public function degrees() { |
22 | - return $this->hasMany(\App\Models\Degree::class); |
|
22 | + return $this->hasMany (\App\Models\Degree::class); |
|
23 | 23 | } |
24 | 24 | } |
@@ -29,17 +29,17 @@ |
||
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | 31 | public function applicant_profile_answers() { |
32 | - return $this->hasMany(\App\Models\ApplicantProfileAnswer::class); |
|
32 | + return $this->hasMany (\App\Models\ApplicantProfileAnswer::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | // Accessors |
36 | 36 | |
37 | 37 | public function getQuestionAttribute() { |
38 | - return Lang::get('common/lookup/applicant_profile_questions')[$this->name]['question']; |
|
38 | + return Lang::get ('common/lookup/applicant_profile_questions')[$this->name]['question']; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | public function getDescriptionAttribute() { |
42 | - return Lang::get('common/lookup/applicant_profile_questions')[$this->name]['description']; |
|
42 | + return Lang::get ('common/lookup/applicant_profile_questions')[$this->name]['description']; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | protected $fillable = []; |
22 | 22 | |
23 | 23 | public function getTranslationAttribute() { |
24 | - return Lang::get('common/lookup/review_status')[$this->name]; |
|
24 | + return Lang::get ('common/lookup/review_status')[$this->name]; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | } |