@@ -27,6 +27,6 @@ |
||
27 | 27 | |
28 | 28 | public function work_samples() //phpcs:ignore |
29 | 29 | { |
30 | - return $this->hasMany(\App\Models\WorkSample::class); |
|
30 | + return $this->hasMany (\App\Models\WorkSample::class); |
|
31 | 31 | } |
32 | 32 | } |
@@ -28,6 +28,6 @@ |
||
28 | 28 | |
29 | 29 | public function job_applications() //phpcs:ignore |
30 | 30 | { |
31 | - return $this->hasMany(\App\Models\JobApplication::class); |
|
31 | + return $this->hasMany (\App\Models\JobApplication::class); |
|
32 | 32 | } |
33 | 33 | } |
@@ -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 | } |
@@ -27,6 +27,6 @@ |
||
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 | } |
@@ -27,6 +27,6 @@ |
||
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 | } |
@@ -30,6 +30,6 @@ |
||
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 | } |
@@ -27,6 +27,6 @@ |
||
27 | 27 | |
28 | 28 | public function criteria() |
29 | 29 | { |
30 | - return $this->hasMany(\App\Models\Criteria::class); |
|
30 | + return $this->hasMany (\App\Models\Criteria::class); |
|
31 | 31 | } |
32 | 32 | } |
@@ -38,11 +38,11 @@ |
||
38 | 38 | |
39 | 39 | public function job_poster() //phpcs:ignore |
40 | 40 | { |
41 | - return $this->belongsTo(\App\Models\JobPoster::class); |
|
41 | + return $this->belongsTo (\App\Models\JobPoster::class); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | public function job_application_answers() //phpcs:ignore |
45 | 45 | { |
46 | - return $this->hasMany(\App\Models\JobApplicationAnswer::class, 'job_poster_questions_id'); |
|
46 | + return $this->hasMany (\App\Models\JobApplicationAnswer::class, 'job_poster_questions_id'); |
|
47 | 47 | } |
48 | 48 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | public function __construct(string $message, int $code, ?\Throwable $previous = null, array $links = null) |
26 | 26 | { |
27 | 27 | $this->links = $links; |
28 | - parent::__construct($message, $code, $previous); |
|
28 | + parent::__construct ($message, $code, $previous); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public function render(\Illuminate\Http\Request $request) |
38 | 38 | { |
39 | - return response()->view( |
|
39 | + return response ()->view ( |
|
40 | 40 | 'errors/admin', |
41 | 41 | [ |
42 | 42 | 'exception' => $this, |