@@ -32,13 +32,13 @@ |
||
32 | 32 | public $translatedAttributes = ['value']; |
33 | 33 | protected $fillable = []; |
34 | 34 | |
35 | - public function job_posters() //phpcs:ignore |
|
35 | + public function job_posters () //phpcs:ignore |
|
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\JobPoster::class); |
|
37 | + return $this->hasMany (\App\Models\JobPoster::class); |
|
38 | 38 | } |
39 | 39 | |
40 | - public function language_requirement_translations() //phpcs:ignore |
|
40 | + public function language_requirement_translations () //phpcs:ignore |
|
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\Lookup\LanguageRequirementTranslation::class); |
|
42 | + return $this->hasMany (\App\Models\Lookup\LanguageRequirementTranslation::class); |
|
43 | 43 | } |
44 | 44 | } |
@@ -33,8 +33,8 @@ |
||
33 | 33 | 'name', |
34 | 34 | ]; |
35 | 35 | |
36 | - public function assessment_type() { |
|
37 | - return $this->belongsTo(\App\Models\Lookup\AssessmentType::class); |
|
36 | + public function assessment_type () { |
|
37 | + return $this->belongsTo (\App\Models\Lookup\AssessmentType::class); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | } |
@@ -28,8 +28,8 @@ |
||
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function file_type() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\FileType::class); |
|
31 | + public function file_type () { |
|
32 | + return $this->belongsTo (\App\Models\Lookup\FileType::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -32,13 +32,13 @@ |
||
32 | 32 | public $translatedAttributes = ['value']; |
33 | 33 | protected $fillable = []; |
34 | 34 | |
35 | - public function skill_declarations() //phpcs:ignore |
|
35 | + public function skill_declarations () //phpcs:ignore |
|
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\SkillDeclaration::class); |
|
37 | + return $this->hasMany (\App\Models\SkillDeclaration::class); |
|
38 | 38 | } |
39 | 39 | |
40 | - public function skill_level_translations() //phpcs:ignore |
|
40 | + public function skill_level_translations () //phpcs:ignore |
|
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\Lookup\SkillLevelTranslation::class); |
|
42 | + return $this->hasMany (\App\Models\Lookup\SkillLevelTranslation::class); |
|
43 | 43 | } |
44 | 44 | } |
@@ -32,13 +32,13 @@ |
||
32 | 32 | public $translatedAttributes = ['value']; |
33 | 33 | protected $fillable = []; |
34 | 34 | |
35 | - public function citizenship_declaration_translations() //phpcs:ignore |
|
35 | + public function citizenship_declaration_translations () //phpcs:ignore |
|
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\Lookup\CitizenshipDeclarationTranslation::class); |
|
37 | + return $this->hasMany (\App\Models\Lookup\CitizenshipDeclarationTranslation::class); |
|
38 | 38 | } |
39 | 39 | |
40 | - public function job_applications() //phpcs:ignore |
|
40 | + public function job_applications () //phpcs:ignore |
|
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\JobApplication::class); |
|
42 | + return $this->hasMany (\App\Models\JobApplication::class); |
|
43 | 43 | } |
44 | 44 | } |
@@ -32,13 +32,13 @@ |
||
32 | 32 | public $translatedAttributes = ['value']; |
33 | 33 | protected $fillable = []; |
34 | 34 | |
35 | - public function application_status_translations() //phpcs:ignore |
|
35 | + public function application_status_translations () //phpcs:ignore |
|
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\Lookup\ApplicationStatusTranslation::class); |
|
37 | + return $this->hasMany (\App\Models\Lookup\ApplicationStatusTranslation::class); |
|
38 | 38 | } |
39 | 39 | |
40 | - public function job_applications() //phpcs:ignore |
|
40 | + public function job_applications () //phpcs:ignore |
|
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\JobApplication::class); |
|
42 | + return $this->hasMany (\App\Models\JobApplication::class); |
|
43 | 43 | } |
44 | 44 | } |
@@ -31,13 +31,13 @@ |
||
31 | 31 | public $translatedAttributes = ['value']; |
32 | 32 | protected $fillable = []; |
33 | 33 | |
34 | - public function job_posters() //phpcs:ignore |
|
34 | + public function job_posters () //phpcs:ignore |
|
35 | 35 | { |
36 | - return $this->hasMany(\App\Models\JobPoster::class); |
|
36 | + return $this->hasMany (\App\Models\JobPoster::class); |
|
37 | 37 | } |
38 | 38 | |
39 | - public function province_translations() //phpcs:ignore |
|
39 | + public function province_translations () //phpcs:ignore |
|
40 | 40 | { |
41 | - return $this->hasMany(\App\Models\Lookup\ProvinceTranslation::class); |
|
41 | + return $this->hasMany (\App\Models\Lookup\ProvinceTranslation::class); |
|
42 | 42 | } |
43 | 43 | } |
@@ -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 | } |
@@ -32,13 +32,13 @@ |
||
32 | 32 | public $translatedAttributes = ['value']; |
33 | 33 | protected $fillable = []; |
34 | 34 | |
35 | - public function references() |
|
35 | + public function references () |
|
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\References::class); |
|
37 | + return $this->hasMany (\App\Models\References::class); |
|
38 | 38 | } |
39 | 39 | |
40 | - public function relationship_translations() //phpcs:ignore |
|
40 | + public function relationship_translations () //phpcs:ignore |
|
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\Lookup\RelationshipTranslation::class); |
|
42 | + return $this->hasMany (\App\Models\Lookup\RelationshipTranslation::class); |
|
43 | 43 | } |
44 | 44 | } |