Test Setup Failed
Push — feature/word_counter ( 45e6a8...1e9fcb )
by Tristan
14:34
created
app/Services/Validation/ApplicationValidator.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\JobApplication;
6 6
 use Illuminate\Support\Facades\Validator;
7 7
 use Illuminate\Validation\Rule;
8
-use Illuminate\Validation\Validator as BaseValidator;
9 8
 use App\Models\Lookup\CitizenshipDeclaration;
10 9
 use App\Models\Lookup\CriteriaType;
11 10
 use App\Models\Lookup\VeteranStatus;
Please login to merge, or discard this patch.
app/Services/Validation/Rules/ApplicantHasRelationRule.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\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/CourseValidator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +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\Course;
6 5
 use App\Models\Lookup\CourseStatus;
7 6
 use App\Models\Applicant;
8 7
 use App\Services\Validation\Rules\UniqueApplicantSkillRule;
Please login to merge, or discard this patch.
app/Services/Validation/Rules/DegreeValidator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +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\Degree;
6 5
 use App\Models\Lookup\DegreeType;
7 6
 use App\Models\Applicant;
8 7
 use App\Services\Validation\Rules\UniqueApplicantSkillRule;
Please login to merge, or discard this patch.
app/Services/Validation/Rules/ReferencesValidator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +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\Reference;
6 5
 use App\Services\Validation\Rules\UniqueApplicantSkillRule;
7 6
 class ReferencesValidator
8 7
 {
Please login to merge, or discard this patch.
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/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/Services/Validation/Rules/UniqueApplicantSkillRule.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\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/Http/Controllers/Admin/SkillCrudController.php 1 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.