Test Setup Failed
Pull Request — dev (#1075)
by Grant
15:38 queued 05:18
created
app/Listeners/LogSuccessfulLogin.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\Listeners;
4 4
 
5 5
 use Illuminate\Auth\Events\Login;
6
-use Illuminate\Queue\InteractsWithQueue;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 6
 use Illuminate\Support\Facades\Log;
9 7
 
10 8
 class LogSuccessfulLogin
Please login to merge, or discard this patch.
app/Listeners/LogUserCreated.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\Listeners;
4 4
 
5 5
 use App\Events\UserCreated;
6
-use Illuminate\Queue\InteractsWithQueue;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 6
 use Illuminate\Support\Facades\Log;
9 7
 
10 8
 class LogUserCreated
Please login to merge, or discard this patch.
app/Listeners/LogUserUpdated.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\Listeners;
4 4
 
5 5
 use App\Events\UserUpdated;
6
-use Illuminate\Queue\InteractsWithQueue;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 6
 use Illuminate\Support\Facades\Log;
9 7
 
10 8
 class LogUserUpdated
Please login to merge, or discard this patch.
app/Mail/JobPosterReviewRequested.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Bus\Queueable;
6 6
 use Illuminate\Mail\Mailable;
7 7
 use Illuminate\Queue\SerializesModels;
8
-use Illuminate\Contracts\Queue\ShouldQueue;
9
-
10 8
 use App\Models\JobPoster;
11 9
 use App\Models\User;
12 10
 
Please login to merge, or discard this patch.
app/Notifications/ResetPasswordNotification.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6 6
 use Illuminate\Notifications\Notification;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 7
 use Illuminate\Notifications\Messages\MailMessage;
9 8
 use Illuminate\Support\Facades\Lang;
10 9
 
Please login to merge, or discard this patch.
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.