@@ -34,11 +34,11 @@ |
||
34 | 34 | |
35 | 35 | public function file_type_translations() //phpcs:ignore |
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\Lookup\FileTypeTranslation::class); |
|
37 | + return $this->hasMany (\App\Models\Lookup\FileTypeTranslation::class); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function work_samples() //phpcs:ignore |
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\WorkSample::class); |
|
42 | + return $this->hasMany (\App\Models\WorkSample::class); |
|
43 | 43 | } |
44 | 44 | } |
@@ -21,15 +21,15 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\Relationship $relationship |
23 | 23 | */ |
24 | -class RelationshipTranslation extends BaseModel { |
|
24 | +class RelationshipTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'relationship_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function relationship() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\Relationship::class); |
|
31 | + public function relationship(){ |
|
32 | + return $this->belongsTo (\App\Models\Lookup\Relationship::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -21,15 +21,15 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\ApplicationStatus $application_status |
23 | 23 | */ |
24 | -class ApplicationStatusTranslation extends BaseModel { |
|
24 | +class ApplicationStatusTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'application_status_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function application_status() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\ApplicationStatus::class); |
|
31 | + public function application_status(){ |
|
32 | + return $this->belongsTo (\App\Models\Lookup\ApplicationStatus::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -34,11 +34,11 @@ |
||
34 | 34 | |
35 | 35 | public function experience_level_translations() //phpcs:ignore |
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\Lookup\ExperienceLevelTranslation::class); |
|
37 | + return $this->hasMany (\App\Models\Lookup\ExperienceLevelTranslation::class); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function skill_declarations() //phpcs:ignore |
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\SkillDeclaration::class); |
|
42 | + return $this->hasMany (\App\Models\SkillDeclaration::class); |
|
43 | 43 | } |
44 | 44 | } |
@@ -21,15 +21,15 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\LanguageRequirement $language_requirement |
23 | 23 | */ |
24 | -class LanguageRequirementTranslation extends BaseModel { |
|
24 | +class LanguageRequirementTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'language_requirement_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function language_requirement() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\LanguageRequirement::class); |
|
31 | + public function language_requirement(){ |
|
32 | + return $this->belongsTo (\App\Models\Lookup\LanguageRequirement::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -21,15 +21,15 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\JobTerm $job_term |
23 | 23 | */ |
24 | -class JobTermTranslation extends BaseModel { |
|
24 | +class JobTermTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'job_term_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function job_term() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\JobTerm::class); |
|
31 | + public function job_term(){ |
|
32 | + return $this->belongsTo (\App\Models\Lookup\JobTerm::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -21,12 +21,12 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\CriteriaType $criteria_type |
23 | 23 | */ |
24 | -class CriteriaTypeTranslation extends BaseModel { |
|
24 | +class CriteriaTypeTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $fillable = []; |
27 | 27 | |
28 | - public function criteria_type() { |
|
29 | - return $this->belongsTo(\App\Models\CriteriaType::class); |
|
28 | + public function criteria_type(){ |
|
29 | + return $this->belongsTo (\App\Models\CriteriaType::class); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | } |
@@ -21,15 +21,15 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\SkillLevel $skill_level |
23 | 23 | */ |
24 | -class SkillLevelTranslation extends BaseModel { |
|
24 | +class SkillLevelTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'skill_level_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function skill_level() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\SkillLevel::class); |
|
31 | + public function skill_level(){ |
|
32 | + return $this->belongsTo (\App\Models\Lookup\SkillLevel::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -33,11 +33,11 @@ |
||
33 | 33 | |
34 | 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 | 39 | public function job_term_translations() //phpcs:ignore |
40 | 40 | { |
41 | - return $this->hasMany(\App\Models\Lookup\JobTermTranslation::class); |
|
41 | + return $this->hasMany (\App\Models\Lookup\JobTermTranslation::class); |
|
42 | 42 | } |
43 | 43 | } |