diff --git a/user_guide_src/source/models/model.rst b/user_guide_src/source/models/model.rst index 1a08519ca55d..53664b5db1a8 100644 --- a/user_guide_src/source/models/model.rst +++ b/user_guide_src/source/models/model.rst @@ -1016,9 +1016,9 @@ beforeFind The name of the calling **method**, whether a **singleton** wa - ``findAll()`` **limit** = the number of rows to find. **offset** = the number of rows to skip during the search. afterFind Same as **beforeFind** but including the resulting row(s) of data, or null if no result found. -beforeDelete **id** = primary key of row being passed to the ``delete()`` method. +beforeDelete **id** = an array of primary key rows being passed to the ``delete()`` method. **purge** = boolean whether soft-delete rows should be hard deleted. -afterDelete **id** = primary key of row being passed to the ``delete()`` method. +afterDelete **id** = an array of primary key rows being passed to the ``delete()`` method. **purge** = boolean whether soft-delete rows should be hard deleted. **result** = the result of the ``delete()`` call on the Query Builder. **data** = unused.