@@ -87,7 +87,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | { |
@@ -1,11 +1,7 @@ |
||
| 1 | 1 | <?php namespace jlourenco\base\Controllers; |
| 2 | 2 | |
| 3 | -use Illuminate\Http\Request; |
|
| 4 | -use App\Http\Requests; |
|
| 5 | 3 | use App\Http\Controllers\Controller; |
| 6 | -use Blog; |
|
| 7 | 4 | use Sentinel; |
| 8 | -use Searchy; |
|
| 9 | 5 | use Validator; |
| 10 | 6 | use Input; |
| 11 | 7 | use Base; |