Passed
Push — task/common-translation-packag... ( 1125af...852212 )
by Grant
08:02
created
app/Models/Lookup/SecurityClearance.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,6 +28,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/VeteranStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/Relationship.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ExperienceLevel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/AssessmentType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/CourseStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/DegreeType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ApplicantProfileQuestion.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ReviewStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.