Skip to content

Commit a81b262

Browse files
authored
Merge pull request #1975 from PrestaEdit/patch-48
fix: add missing $ symbol
2 parents 02c775d + bef9efc commit a81b262

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

development/architecture/migration-guide/forms/CRUD-forms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ final class ContactFormDataHandler implements FormDataHandlerInterface
264264
*/
265265
public function update($id, array $data)
266266
{
267-
$contactObjectModel = new Contact(id);
267+
$contactObjectModel = new Contact($id);
268268
// update data to object model
269269
// ...
270270
$contactObjectModel->update();

0 commit comments

Comments
 (0)