Test Setup Failed
Pull Request — dev (#1075)
by Grant
15:38 queued 05:18
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/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.
app/Http/Controllers/Api/JobApiController.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\Http\Controllers\Controller;
6 6
 use App\Models\JobPoster;
7 7
 use App\Models\Criteria;
8
-use App\Services\Validation\JobPosterValidator;
9 8
 use App\Http\Requests\UpdateJobPoster;
10 9
 use App\Http\Requests\StoreJobPoster;
11 10
 
Please login to merge, or discard this patch.
app/Http/Controllers/AssessmentController.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\Assessment;
6 6
 use App\Models\Criteria;
7 7
 use App\Models\Lookup\AssessmentType;
8
-
9 8
 use Illuminate\Http\Request;
10 9
 
11 10
 class AssessmentController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/JobController.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -8,11 +8,8 @@  discard block
 block discarded – undo
8 8
 use Illuminate\Support\Facades\Mail;
9 9
 use Illuminate\Http\Request;
10 10
 use App\Http\Controllers\Controller;
11
-
12 11
 use Carbon\Carbon;
13
-
14 12
 use App\Mail\JobPosterReviewRequested;
15
-
16 13
 use App\Models\Criteria;
17 14
 use App\Models\JobPoster;
18 15
 use App\Models\JobPosterKeyTask;
@@ -26,7 +23,6 @@  discard block
 block discarded – undo
26 23
 use App\Models\Lookup\CriteriaType;
27 24
 use App\Models\Skill;
28 25
 use App\Models\Manager;
29
-
30 26
 use App\Services\Validation\JobPosterValidator;
31 27
 use Jenssegers\Date\Date;
32 28
 use App\Models\AssessmentPlanNotification;
Please login to merge, or discard this patch.
app/Http/Controllers/RatingGuideQuestionController.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\RatingGuideQuestion;
6 6
 use App\Models\JobPoster;
7 7
 use App\Models\Lookup\AssessmentType;
8
-
9 8
 use Illuminate\Http\Request;
10 9
 
11 10
 class RatingGuideQuestionController extends Controller
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.