Completed
Push — master ( 1a5a62...492dd2 )
by Joao
12:42 queued 09:26
created
src/Controllers/AuthController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
     /**
162 162
      * Account sign in form processing.
163 163
      *
164
-     * @return Redirect
164
+     * @return \Illuminate\Http\RedirectResponse
165 165
      */
166 166
     public function postSignin()
167 167
     {
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
     /**
362 362
      * Forgot password form processing page.
363 363
      *
364
-     * @return Redirect
364
+     * @return \Illuminate\Http\RedirectResponse
365 365
      */
366 366
     public function postForgotPassword()
367 367
     {
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
      *
412 412
      * @param number $userId
413 413
      * @param  string   $passwordResetCode
414
-     * @return Redirect
414
+     * @return \Illuminate\Http\RedirectResponse
415 415
      */
416 416
     public function postForgotPasswordConfirm($userId, $passwordResetCode)
417 417
     {
Please login to merge, or discard this patch.
src/Controllers/UsersController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,6 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Display specified user profil.
78 78
      *
79
-     * @param  int  $id
80 79
      * @return Response
81 80
      */
82 81
     public function show(User $user)
@@ -209,7 +208,6 @@  discard block
 block discarded – undo
209 208
     /**
210 209
      * Change password form processing page.
211 210
      *
212
-     * @param  int      $id
213 211
      * @return Redirect
214 212
      */
215 213
     public function postChangePassword()
Please login to merge, or discard this patch.
src/Controllers/GroupsController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * Group update form processing page.
88 88
      *
89 89
      * @param  int      $id
90
-     * @return Redirect
90
+     * @return \Illuminate\Http\RedirectResponse
91 91
      */
92 92
     public function postEdit($id = null)
93 93
     {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * Group create form processing.
166 166
      *
167
-     * @return Redirect
167
+     * @return \Illuminate\Http\RedirectResponse
168 168
      */
169 169
     public function postCreate()
170 170
     {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      * Delete the given group.
233 233
      *
234 234
      * @param  int      $id
235
-     * @return Redirect
235
+     * @return \Illuminate\Http\RedirectResponse
236 236
      */
237 237
     public function getDelete($id = null)
238 238
     {
Please login to merge, or discard this patch.