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()
9999 /**
100100 * Present a view to present a specific resource object.
101101 *
102- * @param string $id
102+ * @param string|null $id
103103 *
104104 * @return ResponseInterface
105105 */
@@ -132,7 +132,7 @@ public function create()
132132 /**
133133 * Present a view to edit the properties of a specific resource object.
134134 *
135- * @param mixed $id
135+ * @param string|null $id
136136 *
137137 * @return mixed
138138 */
@@ -145,7 +145,7 @@ public function edit($id = null)
145145 * Process the updating, full or partial, of a specific resource object.
146146 * This should be a POST.
147147 *
148- * @param mixed $id
148+ * @param string|null $id
149149 *
150150 * @return mixed
151151 */
@@ -157,7 +157,7 @@ public function update($id = null)
157157 /**
158158 * Present a view to confirm the deletion of a specific resource object.
159159 *
160- * @param mixed $id
160+ * @param string|null $id
161161 *
162162 * @return mixed
163163 */
@@ -169,7 +169,7 @@ public function remove($id = null)
169169 /**
170170 * Process the deletion of a specific resource object.
171171 *
172- * @param mixed $id
172+ * @param string|null $id
173173 *
174174 * @return mixed
175175 */
You can’t perform that action at this time.
0 commit comments