Test Setup Failed
Pull Request — dev (#1075)
by Grant
15:38 queued 05:18
created
app/Exceptions/AdminException.php 1 patch
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.
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/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.
app/Http/Controllers/ExperienceController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      * Show the form for editing the logged-in applicant's experience
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
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      *
48 48
      * @param  \Illuminate\Http\Request $request   Incoming Request.
49 49
      * @param  \App\Models\Applicant    $applicant Incoming Applicant.
50
-     * @return \Illuminate\Http\Response
50
+     * @return \Illuminate\Http\RedirectResponse
51 51
      */
52 52
     public function update(Request $request, Applicant $applicant)
53 53
     {
Please login to merge, or discard this patch.
app/Http/Controllers/JobController.php 1 patch
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.
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.