Test Setup Failed
Push — feature/word_counter ( 45e6a8...1e9fcb )
by Tristan
14:34
created
app/Services/Validation/Rules/UniqueApplicantSkillRule.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
     /**
18 18
      * Create a new rule instance.
19 19
      *
20
-     * @param  App\Models\Applicant  $user
21 20
      * @return void
22 21
      */
23 22
     public function __construct(Applicant $applicant, $skill_declaration_id = null)
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/SkillCrudController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * Action for creating a new Skill in the database.
92 92
      *
93
-     * @param SkillCrudRequest $request Incoming form request.
93
+     * @param StoreRequest $request Incoming form request.
94 94
      *
95 95
      * @return \Illuminate\Http\RedirectResponse
96 96
      */
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     /**
103 103
      * Action for creating a new Skill in the database.
104 104
      *
105
-     * @param SkillCrudRequest $request Incoming form request.
105
+     * @param StoreRequest $request Incoming form request.
106 106
      *
107 107
      * @return \Illuminate\Http\RedirectResponse
108 108
      */
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
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
     *
423 423
     * @param  \Illuminate\Http\Request  $request
424 424
     * @param  \App\Models\JobPoster  $jobPoster
425
-    * @return \Illuminate\Http\Response
425
+    * @return \Illuminate\Http\RedirectResponse|null
426 426
     */
427 427
     public function update_experience(Request $request, JobPoster $jobPoster)
428 428
     {
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
     *
601 601
     * @param  \Illuminate\Http\Request  $request
602 602
     * @param  \App\Models\JobPoster  $jobPoster
603
-    * @return \Illuminate\Http\Response
603
+    * @return \Illuminate\Http\RedirectResponse|null
604 604
     */
605 605
     public function update_essential_skills(Request $request, JobPoster $jobPoster)
606 606
     {
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
     *
686 686
     * @param  \Illuminate\Http\Request  $request
687 687
     * @param  \App\Models\JobPoster  $jobPoster
688
-    * @return \Illuminate\Http\Response
688
+    * @return \Illuminate\Http\RedirectResponse|null
689 689
     */
690 690
     public function update_asset_skills(Request $request, JobPoster $jobPoster)
691 691
     {
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
     *
771 771
     * @param  \Illuminate\Http\Request  $request
772 772
     * @param  \App\Models\JobPoster  $jobPoster
773
-    * @return \Illuminate\Http\Response
773
+    * @return \Illuminate\Http\RedirectResponse|null
774 774
     */
775 775
     public function submit(Request $request, JobPoster $jobPoster)
776 776
     {
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
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
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
      *
119 119
      * @param  \Illuminate\Http\Request  $request
120 120
      * @param  mixed  $user
121
-     * @return mixed
121
+     * @return \Illuminate\Http\RedirectResponse
122 122
      */
123 123
     protected function registered(Request $request, $user)
124 124
     {
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
         $relativeIds = [];
16 19
         if (isset($input['relatives'])) {
@@ -98,6 +101,9 @@  discard block
 block discarded – undo
98 101
         return $mergedArray;
99 102
     }
100 103
 
104
+    /**
105
+     * @param integer $steps
106
+     */
101 107
     protected function rotateKeys($expandedArray, $steps) {
102 108
         $rotatedArray = [];
103 109
         foreach($expandedArray as $item) {
Please login to merge, or discard this patch.
app/Http/Controllers/ExperienceController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      *
51 51
      * @param  \Illuminate\Http\Request $request
52 52
      * @param  \App\Models\Applicant    $applicant
53
-     * @return \Illuminate\Http\Response
53
+     * @return \Illuminate\Http\RedirectResponse
54 54
      */
55 55
     public function update(Request $request, Applicant $applicant)
56 56
     {
Please login to merge, or discard this patch.
app/Http/Controllers/JobController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@
 block discarded – undo
249 249
      *
250 250
      * @param Manager $manager Incoming Manager object.
251 251
      *
252
-     * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory Job Create view
252
+     * @return RedirectResponse Job Create view
253 253
      */
254 254
     public function createAsManager(Manager $manager)
255 255
     {
Please login to merge, or discard this patch.
app/Http/Controllers/ManagerProfileController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
      *
131 131
      * @param  \Illuminate\Http\Request  $request
132 132
      * @param  \App\Models\Manager  $manager
133
-     * @return \Illuminate\Http\Response
133
+     * @return \Illuminate\Http\RedirectResponse
134 134
      */
135 135
     public function update(Request $request, Manager $manager) {
136 136
         $input = $request->input();
Please login to merge, or discard this patch.