Passed
Push — task/add-manager-resource ( c74771 )
by Chris
11:48
created
app/Models/Lookup/FileType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/CitizenshipDeclaration.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_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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/SecurityClearance.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/Models/Lookup/Relationship.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/ExperienceLevel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/AssessmentType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/Lookup/CriteriaType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Models/JobPosterQuestion.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Exceptions/AdminException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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,
Please login to merge, or discard this patch.