Completed
Push — master ( 27d4d0...9e9ea6 )
by Joao
03:11
created
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.