File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
system/Commands/Generators/Views Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public function index()
99
99
/**
100
100
* Present a view to present a specific resource object.
101
101
*
102
- * @param string $id
102
+ * @param string|null $id
103
103
*
104
104
* @return ResponseInterface
105
105
*/
@@ -132,7 +132,7 @@ public function create()
132
132
/**
133
133
* Present a view to edit the properties of a specific resource object.
134
134
*
135
- * @param mixed $id
135
+ * @param string|null $id
136
136
*
137
137
* @return mixed
138
138
*/
@@ -145,7 +145,7 @@ public function edit($id = null)
145
145
* Process the updating, full or partial, of a specific resource object.
146
146
* This should be a POST.
147
147
*
148
- * @param mixed $id
148
+ * @param string|null $id
149
149
*
150
150
* @return mixed
151
151
*/
@@ -157,7 +157,7 @@ public function update($id = null)
157
157
/**
158
158
* Present a view to confirm the deletion of a specific resource object.
159
159
*
160
- * @param mixed $id
160
+ * @param string|null $id
161
161
*
162
162
* @return mixed
163
163
*/
@@ -169,7 +169,7 @@ public function remove($id = null)
169
169
/**
170
170
* Process the deletion of a specific resource object.
171
171
*
172
- * @param mixed $id
172
+ * @param string|null $id
173
173
*
174
174
* @return mixed
175
175
*/
You can’t perform that action at this time.
0 commit comments