@@ -53,11 +53,11 @@ |
||
53 | 53 | |
54 | 54 | public function degree_type() |
55 | 55 | { |
56 | - return $this->belongsTo(\App\Models\Lookup\DegreeType::class); |
|
56 | + return $this->belongsTo (\App\Models\Lookup\DegreeType::class); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | public function applicant() |
60 | 60 | { |
61 | - return $this->belongsTo(\App\Models\Applicant::class); |
|
61 | + return $this->belongsTo (\App\Models\Applicant::class); |
|
62 | 62 | } |
63 | 63 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | */ |
51 | 51 | public function rating_guide_question(): \Illuminate\Database\Eloquent\Relations\BelongsTo |
52 | 52 | { |
53 | - return $this->belongsTo(\App\Models\RatingGuideQuestion::class); |
|
53 | + return $this->belongsTo (\App\Models\RatingGuideQuestion::class); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -60,6 +60,6 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function criterion(): \Illuminate\Database\Eloquent\Relations\BelongsTo |
62 | 62 | { |
63 | - return $this->belongsTo(\App\Models\Criteria::class, 'criterion_id'); |
|
63 | + return $this->belongsTo (\App\Models\Criteria::class, 'criterion_id'); |
|
64 | 64 | } |
65 | 65 | } |
@@ -42,6 +42,6 @@ |
||
42 | 42 | */ |
43 | 43 | public function job_poster() |
44 | 44 | { |
45 | - return $this->belongsTo(\App\Models\JobPoster::class); |
|
45 | + return $this->belongsTo (\App\Models\JobPoster::class); |
|
46 | 46 | } |
47 | 47 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public function job_poster(): \Illuminate\Database\Eloquent\Relations\BelongsTo |
38 | 38 | { |
39 | - return $this->belongsTo(\App\Models\JobPoster::class); |
|
39 | + return $this->belongsTo (\App\Models\JobPoster::class); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function assessment_type(): \Illuminate\Database\Eloquent\Relations\BelongsTo |
48 | 48 | { |
49 | - return $this->belongsTo(\App\Models\Lookup\AssessmentType::class); |
|
49 | + return $this->belongsTo (\App\Models\Lookup\AssessmentType::class); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -56,6 +56,6 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function rating_guide_answers(): \Illuminate\Database\Eloquent\Relations\HasMany |
58 | 58 | { |
59 | - return $this->hasMany(\App\Models\RatingGuideAnswer::class); |
|
59 | + return $this->hasMany (\App\Models\RatingGuideAnswer::class); |
|
60 | 60 | } |
61 | 61 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | public function sendPasswordResetNotification($token) : void |
22 | 22 | { |
23 | - $this->notify(new ResetPasswordNotification($token)); |
|
23 | + $this->notify (new ResetPasswordNotification ($token)); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -35,6 +35,6 @@ |
||
35 | 35 | |
36 | 36 | public function job_poster() //phpcs:ignore |
37 | 37 | { |
38 | - return $this->belongsTo(\App\Models\JobPoster::class); |
|
38 | + return $this->belongsTo (\App\Models\JobPoster::class); |
|
39 | 39 | } |
40 | 40 | } |
@@ -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 | } |
@@ -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, |