@@ -16,7 +16,7 @@ |
||
16 | 16 | * Acessors: |
17 | 17 | * @property string $translation |
18 | 18 | */ |
19 | -class ReviewStatus extends BaseModel { |
|
19 | +class ReviewStatus extends BaseModel{ |
|
20 | 20 | |
21 | 21 | protected $fillable = []; |
22 | 22 |
@@ -21,7 +21,7 @@ |
||
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' |
@@ -14,7 +14,7 @@ |
||
14 | 14 | * |
15 | 15 | * @property \Illuminate\Database\Eloquent\Collection $skills |
16 | 16 | */ |
17 | -class SkillType extends BaseModel { |
|
17 | +class SkillType extends BaseModel{ |
|
18 | 18 | |
19 | 19 | protected $fillable = [ |
20 | 20 | 'name' |
@@ -15,7 +15,7 @@ |
||
15 | 15 | * @property \Illuminate\Database\Eloquent\Collection $job_applications |
16 | 16 | * |
17 | 17 | */ |
18 | -class PreferredLanguage extends BaseModel { |
|
18 | +class PreferredLanguage extends BaseModel{ |
|
19 | 19 | |
20 | 20 | protected $fillable = []; |
21 | 21 |
@@ -21,7 +21,7 @@ |
||
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' |
@@ -21,7 +21,7 @@ |
||
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' |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\AssessmentType $assessment_type |
23 | 23 | */ |
24 | -class AssessmentTypeTranslation extends BaseModel { |
|
24 | +class AssessmentTypeTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'id' => 'int', |
@@ -5,9 +5,9 @@ |
||
5 | 5 | use App\Models\RatingGuideQuestion; |
6 | 6 | use App\Models\JobPoster; |
7 | 7 | |
8 | -$factory->define(RatingGuideQuestion::class, function (Faker\Generator $faker) { |
|
8 | +$factory->define(RatingGuideQuestion::class, function(Faker\Generator $faker) { |
|
9 | 9 | return [ |
10 | - 'job_poster_id' => function () { |
|
10 | + 'job_poster_id' => function() { |
|
11 | 11 | return factory(JobPoster::class)->create()->id; |
12 | 12 | }, |
13 | 13 | 'assessment_type_id' => AssessmentType::inRandomOrder()->first()->id, |
@@ -8,10 +8,10 @@ |
||
8 | 8 | |
9 | 9 | $faker_fr = Faker\Factory::create('fr'); |
10 | 10 | |
11 | -$factory->define(Criteria::class, function (Faker\Generator $faker) use ($faker_fr) { |
|
11 | +$factory->define(Criteria::class, function(Faker\Generator $faker) use ($faker_fr) { |
|
12 | 12 | return [ |
13 | 13 | 'criteria_type_id' => CriteriaType::inRandomOrder()->first()->id, |
14 | - 'job_poster_id' => function () { |
|
14 | + 'job_poster_id' => function() { |
|
15 | 15 | return factory(JobPoster::class)->create()->id; |
16 | 16 | }, |
17 | 17 | 'skill_id' => Skill::inRandomOrder()->first()->id, |