@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | /** |
| 49 | 49 | * Store a newly created resource in storage. |
| 50 | 50 | * |
| 51 | - * @param \App\Http\Requests\ValidatePostRequest $request |
|
| 51 | + * @param ValidatePostRequest $request |
|
| 52 | 52 | * @return \Illuminate\Http\Response |
| 53 | 53 | */ |
| 54 | 54 | public function store(ValidatePostRequest $request) |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | /** |
| 105 | 105 | * Update the specified resource in storage. |
| 106 | 106 | * |
| 107 | - * @param \App\Http\Requests\ValidatePostRequest $request |
|
| 107 | + * @param ValidatePostRequest $request |
|
| 108 | 108 | * @param \Chriscreates\Blog\Post $post |
| 109 | 109 | * @return \Illuminate\Http\Response |
| 110 | 110 | */ |
@@ -6,8 +6,6 @@ |
||
| 6 | 6 | use Artesaos\SEOTools\Facades\SEOMeta; |
| 7 | 7 | use Chriscreates\Blog\Post; |
| 8 | 8 | use Chriscreates\Blog\Requests\ValidatePostRequest; |
| 9 | -use Illuminate\Http\Request; |
|
| 10 | -use Illuminate\Support\Facades\Storage; |
|
| 11 | 9 | |
| 12 | 10 | class PostController extends Controller |
| 13 | 11 | { |