Test Setup Failed
Push — feature/word_counter ( 45e6a8...1e9fcb )
by Tristan
14:34
created
app/Services/Validation/Rules/SkillDeclarationBelongsToUserRule.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Services\Validation\Rules;
4 4
 
5 5
 use Illuminate\Contracts\Validation\Rule;
6
-use Illuminate\Support\Facades\Hash;
7 6
 use Illuminate\Support\Facades\Auth;
8 7
 use Illuminate\Support\Facades\Lang;
9 8
 use App\Models\SkillDeclaration;
Please login to merge, or discard this patch.
app/Services/Validation/Rules/UniqueApplicantSkillRule.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
     /**
18 18
      * Create a new rule instance.
19 19
      *
20
-     * @param  App\Models\Applicant  $user
21 20
      * @return void
22 21
      */
23 22
     public function __construct(Applicant $applicant, $skill_declaration_id = null)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Services\Validation\Rules;
4 4
 
5 5
 use Illuminate\Contracts\Validation\Rule;
6
-use Illuminate\Support\Facades\Hash;
7
-use Illuminate\Support\Facades\Auth;
8 6
 use Illuminate\Support\Facades\Lang;
9 7
 use App\Models\Applicant;
10 8
 
Please login to merge, or discard this patch.
app/Services/Validation/Rules/WorkExperienceValidator.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,10 +2,6 @@
 block discarded – undo
2 2
 namespace App\Services\Validation;
3 3
 use Illuminate\Support\Facades\Validator;
4 4
 use Illuminate\Validation\Rule;
5
-use App\Models\WorkExperience;
6
-use App\Models\Lookup\VeteranStatus;
7
-use App\Models\Lookup\ExperienceLevel;
8
-use App\Models\Lookup\ExperienceLevelTranslation;
9 5
 use App\Models\Applicant;
10 6
 use App\Services\Validation\Rules\UniqueApplicantSkillRule;
11 7
 class WorkExperienceValidator
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/SkillCrudController.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * Action for creating a new Skill in the database.
92 92
      *
93
-     * @param SkillCrudRequest $request Incoming form request.
93
+     * @param StoreRequest $request Incoming form request.
94 94
      *
95 95
      * @return \Illuminate\Http\RedirectResponse
96 96
      */
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     /**
103 103
      * Action for creating a new Skill in the database.
104 104
      *
105
-     * @param SkillCrudRequest $request Incoming form request.
105
+     * @param StoreRequest $request Incoming form request.
106 106
      *
107 107
      * @return \Illuminate\Http\RedirectResponse
108 108
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Illuminate\Support\Facades\App;
7 7
 use App\Models\Lookup\SkillType;
8 8
 // Validation
9
-use App\Http\Requests\SkillCrudRequest as StoreRequest;
10 9
 use App\Http\Requests\SkillCrudRequest as UpdateRequest;
11 10
 
12 11
 class SkillCrudController extends CrudController
Please login to merge, or discard this patch.
app/Http/Controllers/ApplicantProfileController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Support\Facades\Lang;
6
-use Illuminate\Support\Facades\Auth;
7
-use Illuminate\Auth\GuardHelpers;
8 6
 use Illuminate\Http\Request;
9 7
 use App\Models\Lookup\ApplicantProfileQuestion;
10 8
 use App\Models\Applicant;
Please login to merge, or discard this patch.
app/Http/Controllers/ApplicationByJobController.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
     *
423 423
     * @param  \Illuminate\Http\Request  $request
424 424
     * @param  \App\Models\JobPoster  $jobPoster
425
-    * @return \Illuminate\Http\Response
425
+    * @return \Illuminate\Http\RedirectResponse|null
426 426
     */
427 427
     public function update_experience(Request $request, JobPoster $jobPoster)
428 428
     {
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
     *
601 601
     * @param  \Illuminate\Http\Request  $request
602 602
     * @param  \App\Models\JobPoster  $jobPoster
603
-    * @return \Illuminate\Http\Response
603
+    * @return \Illuminate\Http\RedirectResponse|null
604 604
     */
605 605
     public function update_essential_skills(Request $request, JobPoster $jobPoster)
606 606
     {
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
     *
686 686
     * @param  \Illuminate\Http\Request  $request
687 687
     * @param  \App\Models\JobPoster  $jobPoster
688
-    * @return \Illuminate\Http\Response
688
+    * @return \Illuminate\Http\RedirectResponse|null
689 689
     */
690 690
     public function update_asset_skills(Request $request, JobPoster $jobPoster)
691 691
     {
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
     *
771 771
     * @param  \Illuminate\Http\Request  $request
772 772
     * @param  \App\Models\JobPoster  $jobPoster
773
-    * @return \Illuminate\Http\Response
773
+    * @return \Illuminate\Http\RedirectResponse|null
774 774
     */
775 775
     public function submit(Request $request, JobPoster $jobPoster)
776 776
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use App\Models\Skill;
17 17
 use App\Models\Lookup\SkillStatus;
18 18
 use App\Models\Degree;
19
-use App\Models\Lookup\CriteriaType;
20 19
 use App\Models\Criteria;
21 20
 use App\Models\Course;
22 21
 use App\Models\WorkExperience;
Please login to merge, or discard this patch.
app/Http/Controllers/ApplicationReviewController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use App\Models\ApplicationReview;
6 6
 use App\Models\JobApplication;
7 7
 use App\Models\Lookup\ReviewStatus;
8
-use App\Models\Lookup\ReviewDecision;
9 8
 use Illuminate\Http\Request;
10 9
 use Illuminate\Validation\Rule;
11 10
 
Please login to merge, or discard this patch.
app/Http/Controllers/AssessmentController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,7 @@
 block discarded – undo
5 5
 use App\Models\Assessment;
6 6
 use App\Models\Criteria;
7 7
 use App\Models\Lookup\AssessmentType;
8
-
9 8
 use Illuminate\Http\Request;
10
-use Illuminate\Http\Response;
11 9
 
12 10
 class AssessmentController extends Controller
13 11
 {
Please login to merge, or discard this patch.
app/Http/Controllers/AssessmentPlanNotificationController.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,11 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use App\Models\JobPoster;
6
-use App\Models\Lookup\AssessmentType;
7
-
8 5
 use Illuminate\Http\Request;
9
-use Illuminate\Http\Response;
10 6
 use App\Models\AssessmentPlanNotification;
11 7
 
12 8
 class AssessmentPlanNotificationController extends Controller
Please login to merge, or discard this patch.