Skip to content

Commit 53a97af

Browse files
authored
Merge pull request #3614 from justRau/patch-1
Fix a couple of docblocks for better IDE support
2 parents 821954b + c9469a1 commit 53a97af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/Http/Controllers/Operations/CreateOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ protected function setupCreateDefaults()
4848
/**
4949
* Show the form for creating inserting a new row.
5050
*
51-
* @return Response
51+
* @return \Illuminate\Contracts\View\View
5252
*/
5353
public function create()
5454
{

src/app/Http/Controllers/Operations/UpdateOperation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected function setupUpdateDefaults()
5959
*
6060
* @param int $id
6161
*
62-
* @return Response
62+
* @return \Illuminate\Contracts\View\View
6363
*/
6464
public function edit($id)
6565
{
@@ -82,7 +82,7 @@ public function edit($id)
8282
/**
8383
* Update the specified resource in the database.
8484
*
85-
* @return Response
85+
* @return \Illuminate\Http\Response
8686
*/
8787
public function update()
8888
{

0 commit comments

Comments
 (0)