Skip to content

Commit 38e6f7f

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: [AssetMapper] Fixing import parsing from jsdelivr Fix htaccess sample to use index.php instead of app.php [SecurityBundle] Add `firewalls.logout.csrf_token_manager` to XSD [Form] Fix form events phpdocs fix(mailgun-smtp): disable tls for mailgun as it should use starttls instead
2 parents 37830e8 + 0007fd0 commit 38e6f7f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Event/PostSetDataEvent.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
/**
1818
* This event is dispatched at the end of the Form::setData() method.
1919
*
20-
* This event is mostly here for reading data after having pre-populated the form.
20+
* It can be used to modify a form depending on the populated data (adding or
21+
* removing fields dynamically).
2122
*/
2223
final class PostSetDataEvent extends FormEvent
2324
{

Event/PreSetDataEvent.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
/**
1717
* This event is dispatched at the beginning of the Form::setData() method.
1818
*
19-
* It can be used to:
20-
* - Modify the data given during pre-population;
21-
* - Modify a form depending on the pre-populated data (adding or removing fields dynamically).
19+
* It can be used to modify the data given during pre-population.
2220
*/
2321
final class PreSetDataEvent extends FormEvent
2422
{

0 commit comments

Comments
 (0)