@@ -21,7 +21,7 @@ public function index()
21
21
/**
22
22
* Return the properties of a resource object.
23
23
*
24
- * @param string|null $id
24
+ * @param int| string|null $id
25
25
*
26
26
* @return ResponseInterface
27
27
*/
@@ -53,7 +53,7 @@ public function create()
53
53
/**
54
54
* Return the editable properties of a resource object.
55
55
*
56
- * @param string|null $id
56
+ * @param int| string|null $id
57
57
*
58
58
* @return ResponseInterface
59
59
*/
@@ -65,7 +65,7 @@ public function edit($id = null)
65
65
/**
66
66
* Add or update a model resource, from "posted" properties.
67
67
*
68
- * @param string|null $id
68
+ * @param int| string|null $id
69
69
*
70
70
* @return ResponseInterface
71
71
*/
@@ -77,7 +77,7 @@ public function update($id = null)
77
77
/**
78
78
* Delete the designated resource object from the model.
79
79
*
80
- * @param string|null $id
80
+ * @param int| string|null $id
81
81
*
82
82
* @return ResponseInterface
83
83
*/
@@ -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|null $id
102
+ * @param int| 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 string|null $id
135
+ * @param int| string|null $id
136
136
*
137
137
* @return ResponseInterface
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 string|null $id
148
+ * @param int| string|null $id
149
149
*
150
150
* @return ResponseInterface
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 string|null $id
160
+ * @param int| string|null $id
161
161
*
162
162
* @return ResponseInterface
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 string|null $id
172
+ * @param int| string|null $id
173
173
*
174
174
* @return ResponseInterface
175
175
*/
0 commit comments