Test Setup Failed
Pull Request — dev (#1075)
by Grant
15:38 queued 05:18
created
app/Http/Controllers/JobController.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
      * Create a blank job poster for the specified manager
220 220
      *
221 221
      * @param  \App\Models\Manager $manager Incoming Manager object.
222
-     * @return \Illuminate\Http\Response Job Create view
222
+     * @return \Illuminate\Http\RedirectResponse Job Create view
223 223
      */
224 224
     public function createAsManager(Manager $manager)
225 225
     {
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
      *
377 377
      * @param  \Illuminate\Http\Request $request   Incoming request object.
378 378
      * @param  \App\Models\JobPoster    $jobPoster Optional Job Poster object.
379
-     * @return \Illuminate\Http\Response
379
+     * @return \Illuminate\Http\RedirectResponse
380 380
      */
381 381
     public function store(Request $request, JobPoster $jobPoster = null)
382 382
     {
Please login to merge, or discard this 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/ManagerProfileController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * Show the form for editing the logged-in manager's profile
75 75
      *
76 76
      * @param  \Illuminate\Http\Request $request Incoming Request.
77
-     * @return \Illuminate\Http\Response
77
+     * @return \Illuminate\Http\RedirectResponse
78 78
      */
79 79
     public function editAuthenticated(Request $request)
80 80
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      *
131 131
      * @param  \Illuminate\Http\Request $request Incoming Request.
132 132
      * @param  \App\Models\Manager      $manager Incoming Manager.
133
-     * @return \Illuminate\Http\Response
133
+     * @return \Illuminate\Http\RedirectResponse
134 134
      */
135 135
     public function update(Request $request, Manager $manager)
136 136
     {
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/Controllers/ReferencesController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * Show the form for editing the logged-in applicant's references
18 18
      *
19 19
      * @param  \Illuminate\Http\Request $request Incoming request object.
20
-     * @return \Illuminate\Http\Response
20
+     * @return \Illuminate\Http\RedirectResponse
21 21
      */
22 22
     public function editAuthenticated(Request $request)
23 23
     {
Please login to merge, or discard this patch.
app/Http/Controllers/SkillDeclarationController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * Show the form for editing the logged-in applicant's skills
18 18
      *
19 19
      * @param  \Illuminate\Http\Request $request Incoming request.
20
-     * @return \Illuminate\Http\Response
20
+     * @return \Illuminate\Http\RedirectResponse
21 21
      */
22 22
     public function editAuthenticated(Request $request)
23 23
     {
Please login to merge, or discard this patch.
app/Http/Middleware/CheckIfAdmin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Answer to unauthorized access request.
30 30
      *
31
-     * @param [type] $request [description]
31
+     * @param \Illuminate\Http\Request $request [description]
32 32
      *
33 33
      * @return [type] [description]
34 34
      */
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.