@@ -31,7 +31,7 @@ public function index()
3131 /**
3232 * Present a view to present a specific resource object
3333 *
34- * @param string|null $id
34+ * @param int| string|null $id
3535 *
3636 * @return Response|string|void
3737 */
@@ -64,7 +64,7 @@ public function create()
6464 /**
6565 * Present a view to edit the properties of a specific resource object
6666 *
67- * @param string|null $id
67+ * @param int| string|null $id
6868 *
6969 * @return Response|string|void
7070 */
@@ -77,7 +77,7 @@ public function edit($id = null)
7777 * Process the updating, full or partial, of a specific resource object.
7878 * This should be a POST.
7979 *
80- * @param string|null $id
80+ * @param int| string|null $id
8181 *
8282 * @return Response|string|void
8383 */
@@ -89,7 +89,7 @@ public function update($id = null)
8989 /**
9090 * Present a view to confirm the deletion of a specific resource object
9191 *
92- * @param string|null $id
92+ * @param int| string|null $id
9393 *
9494 * @return Response|string|void
9595 */
@@ -101,7 +101,7 @@ public function remove($id = null)
101101 /**
102102 * Process the deletion of a specific resource object
103103 *
104- * @param string|null $id
104+ * @param int| string|null $id
105105 *
106106 * @return Response|string|void
107107 */
0 commit comments