Skip to content

Commit 5ae47a3

Browse files
committed
fix: @return in template
1 parent a988a38 commit 5ae47a3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

system/Commands/Generators/Views/controller.tpl.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function show($id = null)
111111
/**
112112
* Present a view to present a new single resource object.
113113
*
114-
* @return mixed
114+
* @return ResponseInterface
115115
*/
116116
public function new()
117117
{
@@ -122,7 +122,7 @@ public function new()
122122
* Process the creation/insertion of a new resource object.
123123
* This should be a POST.
124124
*
125-
* @return mixed
125+
* @return ResponseInterface
126126
*/
127127
public function create()
128128
{
@@ -134,7 +134,7 @@ public function create()
134134
*
135135
* @param string|null $id
136136
*
137-
* @return mixed
137+
* @return ResponseInterface
138138
*/
139139
public function edit($id = null)
140140
{
@@ -147,7 +147,7 @@ public function edit($id = null)
147147
*
148148
* @param string|null $id
149149
*
150-
* @return mixed
150+
* @return ResponseInterface
151151
*/
152152
public function update($id = null)
153153
{
@@ -159,7 +159,7 @@ public function update($id = null)
159159
*
160160
* @param string|null $id
161161
*
162-
* @return mixed
162+
* @return ResponseInterface
163163
*/
164164
public function remove($id = null)
165165
{
@@ -171,7 +171,7 @@ public function remove($id = null)
171171
*
172172
* @param string|null $id
173173
*
174-
* @return mixed
174+
* @return ResponseInterface
175175
*/
176176
public function delete($id = null)
177177
{

0 commit comments

Comments
 (0)