-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Remove some implicit bool type juggling #61203
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
Conversation
1f6ddc5
to
62c139d
Compare
@nicolas-grekas shouldn't we do that work in 6.4, as we'll want to have support for PHP 8.5 in Symfony 6.4 due to our policy ? |
To me, that's comparable to CS fixes. PHP 8.5 might ship the deprecation, although vote is ongoing and I wouldn't bet on it passing... |
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.
LGTM, the vote is indeed likely to fail
I'd say let's wait for the voting to finish and if it passes, re-target |
The RFC won't pass, that's 99,999% sure now. |
src/Symfony/Component/OptionsResolver/Tests/OptionsResolverTest.php
Outdated
Show resolved
Hide resolved
This PR was merged into the 6.4 branch. Discussion ---------- Fix wrong boolean values | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT The subset of #61203 that's obviously mistakes Commits ------- 12d0aa9 Fix wrong boolean values
62c139d
to
61ee793
Compare
61ee793
to
8680ce4
Compare
Thank you @Girgias. |
No real bug fixed but still edge cases that are better handled explicitly.
This is both a subset and a superset of #60890 by @Girgias
It fixes all spots reported by php/php-src#18879 that can be consider as legit to me.