Test Setup Failed
Pull Request — dev (#1075)
by Grant
15:38 queued 05:18
created
app/Exceptions/AdminException.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Override, custom exception doesn't return a status code.
54 54
      *
55
-     * @return mixed
55
+     * @return integer
56 56
      */
57 57
     public function getStatusCode()
58 58
     {
Please login to merge, or discard this 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/ApplicantProfileController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      * Show the form for editing the logged-in applicant's profile
57 57
      *
58 58
      * @param  \Illuminate\Http\Request $request Incoming request.
59
-     * @return \Illuminate\Http\Response
59
+     * @return \Illuminate\Http\RedirectResponse
60 60
      */
61 61
     public function editAuthenticated(Request $request)
62 62
     {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      *
116 116
      * @param  \Illuminate\Http\Request $request   Incoming request.
117 117
      * @param  \App\Models\Applicant    $applicant Applicant object to update.
118
-     * @return \Illuminate\Http\Response
118
+     * @return \Illuminate\Http\RedirectResponse
119 119
      */
120 120
     public function update(Request $request, Applicant $applicant)
121 121
     {
Please login to merge, or discard this patch.
app/Http/Controllers/ApplicationByJobController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
      *
396 396
      * @param  \Illuminate\Http\Request $request   Incoming Request object.
397 397
      * @param  \App\Models\JobPoster    $jobPoster Incoming Job Poster object.
398
-     * @return \Illuminate\Http\Response
398
+     * @return \Illuminate\Http\RedirectResponse|null
399 399
      */
400 400
     public function updateExperience(Request $request, JobPoster $jobPoster)
401 401
     {
@@ -575,7 +575,7 @@  discard block
 block discarded – undo
575 575
      *
576 576
      * @param  \Illuminate\Http\Request $request   Incoming Request object.
577 577
      * @param  \App\Models\JobPoster    $jobPoster Incoming Job Poster object.
578
-     * @return \Illuminate\Http\Response
578
+     * @return \Illuminate\Http\RedirectResponse|null
579 579
      */
580 580
     public function updateEssentialSkills(Request $request, JobPoster $jobPoster)
581 581
     {
@@ -659,7 +659,7 @@  discard block
 block discarded – undo
659 659
      *
660 660
      * @param  \Illuminate\Http\Request $request   Incoming Request object.
661 661
      * @param  \App\Models\JobPoster    $jobPoster Incoming Job Poster object.
662
-     * @return \Illuminate\Http\Response
662
+     * @return \Illuminate\Http\RedirectResponse|null
663 663
      */
664 664
     public function updateAssetSkills(Request $request, JobPoster $jobPoster)
665 665
     {
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
      *
744 744
      * @param  \Illuminate\Http\Request $request   Incoming Request object.
745 745
      * @param  \App\Models\JobPoster    $jobPoster Incoming Job Poster object.
746
-     * @return \Illuminate\Http\Response
746
+     * @return \Illuminate\Http\RedirectResponse|null
747 747
      */
748 748
     public function submit(Request $request, JobPoster $jobPoster)
749 749
     {
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/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
      * Log the user out of the application.
78 78
      *
79 79
      * @param  \Illuminate\Http\Request $request Incoming Request object.
80
-     * @return \Illuminate\Http\Response
80
+     * @return \Illuminate\Http\RedirectResponse
81 81
      */
82 82
     public function logout(Request $request)
83 83
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
      *
113 113
      * @param  \Illuminate\Http\Request $request Incoming Request.
114 114
      * @param  mixed                    $user    Incoming User data.
115
-     * @return \Illuminate\Http\Response
115
+     * @return \Illuminate\Http\RedirectResponse
116 116
      */
117 117
     protected function registered(Request $request, $user)
118 118
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Controller.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@  discard block
 block discarded – undo
11 11
 {
12 12
     use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
13 13
 
14
+    /**
15
+     * @param string $relativeType
16
+     */
14 17
     public function getRelativeIds($input, $relativeType)
15 18
     {
16 19
         $relativeIds = [];
@@ -103,6 +106,9 @@  discard block
 block discarded – undo
103 106
         return $mergedArray;
104 107
     }
105 108
 
109
+    /**
110
+     * @param integer $steps
111
+     */
106 112
     protected function rotateKeys($expandedArray, $steps)
107 113
     {
108 114
         $rotatedArray = [];
Please login to merge, or discard this patch.