Passed
Push — dependabot/npm_and_yarn/dev/co... ( c231c8 )
by
unknown
11:30
created
app/Models/Lookup/ProvinceTranslation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,15 +21,15 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\Province $province
23 23
  */
24
-class ProvinceTranslation extends BaseModel {
24
+class ProvinceTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'province_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function province() {
32
-        return $this->belongsTo(\App\Models\Lookup\Province::class);
31
+    public function province(){
32
+        return $this->belongsTo (\App\Models\Lookup\Province::class);
33 33
     }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
app/Models/Lookup/SecurityClearance.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
 
35 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 40
     public function security_clearance_translations() //phpcs:ignore
41 41
     {
42
-        return $this->hasMany(\App\Models\Lookup\SecurityClearanceTranslation::class);
42
+        return $this->hasMany (\App\Models\Lookup\SecurityClearanceTranslation::class);
43 43
     }
44 44
 }
Please login to merge, or discard this patch.
app/Models/Lookup/LanguageRequirement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
 
35 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 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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/AssessmentTypeTranslation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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',
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/FileTypeTranslation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,15 +21,15 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\FileType $file_type
23 23
  */
24
-class FileTypeTranslation extends BaseModel {
24
+class FileTypeTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'file_type_id' => 'int'
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/SkillLevel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
 
35 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 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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/CitizenshipDeclaration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
 
35 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 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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ApplicationStatus.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
 
35 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 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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/Province.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,11 +33,11 @@
 block discarded – undo
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 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
 }
Please login to merge, or discard this patch.