Skip to content

Commit 03a7967

Browse files
committed
minor #9942 Change form.xxx_bind to form.xxx_submit (guillbdx)
This PR was merged into the 4.0 branch. Discussion ---------- Change form.xxx_bind to form.xxx_submit Form Events names have changed in 4.0 version, using 'submit' instead of 'bind'. <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- a6d2938 Change form.xxx_bind to form.xxx_submit
2 parents ffd4e9d + a6d2938 commit 03a7967

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

form/events.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,9 @@ Name ``FormEvents`` Constant Event's Data
252252
====================== ============================= ===============
253253
``form.pre_set_data`` ``FormEvents::PRE_SET_DATA`` Model data
254254
``form.post_set_data`` ``FormEvents::POST_SET_DATA`` Model data
255-
``form.pre_bind`` ``FormEvents::PRE_SUBMIT`` Request data
256-
``form.bind`` ``FormEvents::SUBMIT`` Normalized data
257-
``form.post_bind`` ``FormEvents::POST_SUBMIT`` View data
255+
``form.pre_submit`` ``FormEvents::PRE_SUBMIT`` Request data
256+
``form.submit`` ``FormEvents::SUBMIT`` Normalized data
257+
``form.post_submit`` ``FormEvents::POST_SUBMIT`` View data
258258
====================== ============================= ===============
259259

260260
Event Listeners

0 commit comments

Comments
 (0)