Passed
Push — bugfix/random-ui-stuff ( 310aaf...d6d2ab )
by Josh
60:17 queued 49:01
created
app/Models/Lookup/CitizenshipDeclarationTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function citizenship_declaration() {
32
-        return $this->belongsTo(\App\Models\Lookup\CitizenshipDeclaration::class);
31
+    public function citizenship_declaration () {
32
+        return $this->belongsTo (\App\Models\Lookup\CitizenshipDeclaration::class);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
app/Models/Lookup/SkillStatus.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,12 +29,12 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/CriteriaType.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
     public $translatedAttributes = ['value', 'description'];
34 34
     protected $fillable = [];
35 35
 
36
-    public function criteria()
36
+    public function criteria ()
37 37
     {
38
-        return $this->hasMany(\App\Models\Criteria::class);
38
+        return $this->hasMany (\App\Models\Criteria::class);
39 39
     }
40 40
 
41
-    public function criteria_type_translations() //phpcs:ignore
41
+    public function criteria_type_translations () //phpcs:ignore
42 42
     {
43
-        return $this->hasMany(\App\Models\CriteriaTypeTranslation::class);
43
+        return $this->hasMany (\App\Models\CriteriaTypeTranslation::class);
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
app/Models/Lookup/DegreeType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ExperienceLevelTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function experience_level() {
32
-        return $this->belongsTo(\App\Models\Lookup\ExperienceLevel::class);
31
+    public function experience_level () {
32
+        return $this->belongsTo (\App\Models\Lookup\ExperienceLevel::class);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ApplicantProfileQuestion.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,18 +28,18 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/JobPosterKeyTask.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
     ];
35 35
     protected $fillable = [];
36 36
 
37
-    public function job_poster() //phpcs:ignore
37
+    public function job_poster () //phpcs:ignore
38 38
     {
39
-        return $this->belongsTo(\App\Models\JobPoster::class);
39
+        return $this->belongsTo (\App\Models\JobPoster::class);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
app/Models/JobPosterTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
         'culture_special',
60 60
     ];
61 61
 
62
-    public function job_poster()
62
+    public function job_poster ()
63 63
     {
64
-        return $this->belongsTo(\App\Models\JobPoster::class);
64
+        return $this->belongsTo (\App\Models\JobPoster::class);
65 65
     }
66 66
 }
Please login to merge, or discard this patch.
app/Models/ManagerTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
         'learning_path'
47 47
     ];
48 48
 
49
-    public function manager() {
50
-        return $this->belongsTo(\App\Models\Manager::class);
49
+    public function manager () {
50
+        return $this->belongsTo (\App\Models\Manager::class);
51 51
     }
52 52
 
53 53
 }
Please login to merge, or discard this patch.