@@ -29,6 +29,6 @@ |
||
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 | } |
@@ -20,7 +20,7 @@ |
||
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 | } |
@@ -28,6 +28,6 @@ |
||
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 | } |
@@ -14,7 +14,7 @@ |
||
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 | /** |