Passed
Push — task/common-translation-packag... ( 1125af...852212 )
by Grant
08:02
created
app/Models/Lookup/JobPosterStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
 
30 30
     public function job_posters() // phpcs:ignore
31 31
     {
32
-        return $this->hasMany(\App\Models\JobPoster::class);
32
+        return $this->hasMany (\App\Models\JobPoster::class);
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
app/Models/Lookup/PreferredLanguage.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/JobTerm.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/Http/Requests/ClassificationCrudRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function authorize() : bool
15 15
     {
16 16
         // Only allow updates if the user is a logged in Admin.
17
-        return backpack_auth()->check();
17
+        return backpack_auth ()->check ();
18 18
     }
19 19
 
20 20
     /**
Please login to merge, or discard this patch.