Skip to content

Commit 40b9def

Browse files
committed
fix: add missing @param in template
1 parent 7b6b7d0 commit 40b9def

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ public function index()
2121
/**
2222
* Return the properties of a resource object.
2323
*
24+
* @param string|null $id
25+
*
2426
* @return ResponseInterface
2527
*/
2628
public function show($id = null)
@@ -51,6 +53,8 @@ public function create()
5153
/**
5254
* Return the editable properties of a resource object.
5355
*
56+
* @param string|null $id
57+
*
5458
* @return ResponseInterface
5559
*/
5660
public function edit($id = null)
@@ -61,6 +65,8 @@ public function edit($id = null)
6165
/**
6266
* Add or update a model resource, from "posted" properties.
6367
*
68+
* @param string|null $id
69+
*
6470
* @return ResponseInterface
6571
*/
6672
public function update($id = null)
@@ -71,6 +77,8 @@ public function update($id = null)
7177
/**
7278
* Delete the designated resource object from the model.
7379
*
80+
* @param string|null $id
81+
*
7482
* @return ResponseInterface
7583
*/
7684
public function delete($id = null)

0 commit comments

Comments
 (0)