-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Form] Add upgrade path for empty_data option in TextType #41516
base: 7.3
Are you sure you want to change the base?
[Form] Add upgrade path for empty_data option in TextType #41516
Conversation
748c37b
to
1b38c73
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having all those test cases marked as legacy looks suspicious to me. Should they all really be removed in 6.0? If not, how should they look like then?
e103ebb
to
4a44fb6
Compare
@nicolas-grekas I am trying to solve the problem in tests. What is the best way to do this?
|
Marking all these tests as legacy is not the way to go. Instead all the tests should be updated the same way an Symfony user would have to update their code to keep the existing behavior when this PR is merged. This will allow us to let the tests show us the impact the proposed change has on our users and we can use it as a base for a discussion about whether or not this is worth it. |
57ea40c
to
7d9556e
Compare
@@ -27,6 +27,9 @@ public function buildForm(FormBuilderInterface $builder, array $options) | |||
// See https://github.com/symfony/symfony/issues/5906#issuecomment-203189375 | |||
if ('' === $options['empty_data']) { | |||
$builder->addViewTransformer($this); | |||
} elseif (FormType::$emptyData === $options['empty_data']) { | |||
// "empty_data" option is the default value from FormType::configureOptions() | |||
trigger_deprecation('symfony/form', '5.4', 'The default value of "empty_data" option in "%s" will be changed to empty string. Declare "NULL" as value for "empty_data" if you still want use "NULL" as data.', __CLASS__); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To ensure that this is the default closure and not the user-specified one, we must compare the provided closure with the default closure. To do this, the default closure must be created once and be accessible from the outside.
31f105e
to
52279c4
Compare
52279c4
to
ed68472
Compare
ed68472
to
2306c3a
Compare
What's the status here? |
643286f
to
f1c43f9
Compare
@fabpot needs review |
d3d2aae
to
02257d8
Compare
4568571
to
392b761
Compare
a1be371
to
2d9849f
Compare
2d9849f
to
fa0328d
Compare
Upgrade path for #41514