Test Setup Failed
Push — feature/word_counter ( 45e6a8...1e9fcb )
by Tristan
14:34
created
app/Exceptions/AdminException.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\Exceptions;
4 4
 
5 5
 use Exception;
6
-use Illuminate\Support\Facades\Log;
7 6
 
8 7
 class AdminException extends Exception
9 8
 {
Please login to merge, or discard this patch.
app/Http/Requests/SkillCrudRequest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Requests;
4 4
 
5
-use App\Http\Requests\Request;
6 5
 use Illuminate\Foundation\Http\FormRequest;
7
-use Illuminate\Support\Facades\Auth;
8 6
 
9 7
 class SkillCrudRequest extends FormRequest
10 8
 {
Please login to merge, or discard this patch.
app/Listeners/ApplicationStatusChanged.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\ApplicationSaved;
6
-use Illuminate\Queue\InteractsWithQueue;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 6
 use Illuminate\Support\Facades\Log;
9 7
 use Illuminate\Support\Facades\Auth;
10 8
 
Please login to merge, or discard this patch.
app/Listeners/JobPublished.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\JobSaved;
6
-use Illuminate\Queue\InteractsWithQueue;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 6
 use Illuminate\Support\Facades\Log;
9 7
 
10 8
 class JobPublished
Please login to merge, or discard this patch.
app/Listeners/LogApplicationRetrieved.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\ApplicationRetrieved;
6
-use Illuminate\Queue\InteractsWithQueue;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 6
 use Illuminate\Support\Facades\Log;
9 7
 use Illuminate\Support\Facades\Auth;
10 8
 
Please login to merge, or discard this patch.
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.