@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @return void |
20 | 20 | */ |
21 | - public function sendPasswordResetNotification($token) : void |
|
21 | + public function sendPasswordResetNotification ($token) : void |
|
22 | 22 | { |
23 | - $this->notify(new ResetPasswordNotification($token)); |
|
23 | + $this->notify (new ResetPasswordNotification ($token)); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | * |
29 | 29 | * @return string |
30 | 30 | */ |
31 | - public function getEmailForPasswordReset() : string |
|
31 | + public function getEmailForPasswordReset () : string |
|
32 | 32 | { |
33 | 33 | return $this->email; |
34 | 34 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | protected $table = 'course_status'; |
20 | 20 | protected $fillable = []; |
21 | 21 | |
22 | - public function courses() { |
|
23 | - return $this->hasMany(\App\Models\Course::class); |
|
22 | + public function courses () { |
|
23 | + return $this->hasMany (\App\Models\Course::class); |
|
24 | 24 | } |
25 | 25 | } |
@@ -30,8 +30,8 @@ |
||
30 | 30 | * |
31 | 31 | * @return \Illuminate\Database\Eloquent\Collection |
32 | 32 | */ |
33 | - public function assessments() // phpcs:ignore |
|
33 | + public function assessments () // phpcs:ignore |
|
34 | 34 | { |
35 | - return $this->hasMany(Assessment::class); |
|
35 | + return $this->hasMany (Assessment::class); |
|
36 | 36 | } |
37 | 37 | } |
@@ -19,8 +19,8 @@ |
||
19 | 19 | |
20 | 20 | protected $fillable = []; |
21 | 21 | |
22 | - public function job_applications() { |
|
23 | - return $this->hasMany(\App\Models\JobApplication::class); |
|
22 | + public function job_applications () { |
|
23 | + return $this->hasMany (\App\Models\JobApplication::class); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | } |
@@ -20,8 +20,8 @@ |
||
20 | 20 | |
21 | 21 | protected $fillable = []; |
22 | 22 | |
23 | - public function getTranslationAttribute() { |
|
24 | - return Lang::get('common/lookup/review_status')[$this->name]; |
|
23 | + public function getTranslationAttribute () { |
|
24 | + return Lang::get ('common/lookup/review_status')[$this->name]; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | 'name' |
21 | 21 | ]; |
22 | 22 | |
23 | - public function skills() { |
|
24 | - return $this->hasMany(\App\Models\Skill::class); |
|
23 | + public function skills () { |
|
24 | + return $this->hasMany (\App\Models\Skill::class); |
|
25 | 25 | } |
26 | 26 | } |
@@ -29,12 +29,12 @@ |
||
29 | 29 | */ |
30 | 30 | protected $appends = ['status']; |
31 | 31 | |
32 | - public function skill_declarations() { |
|
33 | - return $this->hasMany(\App\Models\SkillDeclaration::class); |
|
32 | + public function skill_declarations () { |
|
33 | + return $this->hasMany (\App\Models\SkillDeclaration::class); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | // Accessors |
37 | - public function getStatusAttribute() { |
|
38 | - return Lang::get('common/skills.status')[$this->name]; |
|
37 | + public function getStatusAttribute () { |
|
38 | + return Lang::get ('common/skills.status')[$this->name]; |
|
39 | 39 | } |
40 | 40 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | { |
19 | 19 | protected $fillable = []; |
20 | 20 | |
21 | - public function degrees() { |
|
22 | - return $this->hasMany(\App\Models\Degree::class); |
|
21 | + public function degrees () { |
|
22 | + return $this->hasMany (\App\Models\Degree::class); |
|
23 | 23 | } |
24 | 24 | } |
@@ -28,18 +28,18 @@ |
||
28 | 28 | |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function applicant_profile_answers() { |
|
32 | - return $this->hasMany(\App\Models\ApplicantProfileAnswer::class); |
|
31 | + public function applicant_profile_answers () { |
|
32 | + return $this->hasMany (\App\Models\ApplicantProfileAnswer::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | // Accessors |
36 | 36 | |
37 | - public function getQuestionAttribute() { |
|
38 | - return Lang::get('common/lookup/applicant_profile_questions')[$this->name]['question']; |
|
37 | + public function getQuestionAttribute () { |
|
38 | + return Lang::get ('common/lookup/applicant_profile_questions')[$this->name]['question']; |
|
39 | 39 | } |
40 | 40 | |
41 | - public function getDescriptionAttribute() { |
|
42 | - return Lang::get('common/lookup/applicant_profile_questions')[$this->name]['description']; |
|
41 | + public function getDescriptionAttribute () { |
|
42 | + return Lang::get ('common/lookup/applicant_profile_questions')[$this->name]['description']; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | } |