-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
Revert ReflectionType::__toString() behavior + deprecate #2137
Conversation
@@ -2158,7 +2158,7 @@ ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_functio | |||
internal_function->prototype = NULL; | |||
if (ptr->flags) { | |||
if (!(ptr->flags & ZEND_ACC_PPP_MASK)) { | |||
if (ptr->flags != ZEND_ACC_DEPRECATED || scope) { | |||
if (ptr->flags != ZEND_ACC_DEPRECATED && scope) { |
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.
This change looks unrelated but I asked Nikita about it and he said this:
there was a bug elsewhere preventing me from using ZEND_ACC_DEPRECATED in ZEND_ME without also specifying ZEND_ACC_PUBLIC
(tl;dr is related)
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.
This change is not needed anymore, right? (Would be better as a separate change anyway.)
de1474c
to
8c2410d
Compare
This caused regressions in Prophecy for code that worked fine on PHP 7.0 - there's no compelling reason for |
Unfortunately we still have no way to know that - |
Given |
As noted in the RFC, a function declaration that looks like this:
Implies
This is important to understand because there is no semantic difference in the type whether or not it is Whether it is correct to generate a |
@morrisonleci It's logical but is a BC break. Aside from that getType should return a type. |
@ciaranmcnulty: I think @morrisonlevi was answering to @Majkl578 saying that "allowsNull is useless as it returns TRUE for both @Majkl578: |
Just tried this against zend-code and ProxyManager, and it seems to work. @ciaranmcnulty @nicolas-grekas does this work against your test suites? |
The only issue I had so far is that the deprecation notices cause test suites to fail. This is
Not sure whether the I'm still for the deprecation, just adding a question to the bucket. @nicolas-grekas fyi, when |
You can set up your error reporting to ignore E_DEPRECATED or try using an error handler instead since ignoring all warnings and non-exception errors is usually undesirable. That's more code/configuration but it is probably better solution. |
Yes, the only issue is that it's still existing code that may be broken. Most setups ignore deprecation errors in production environments. I just threw in the problem: as I said, phpunit config fix did the trick for me. |
@Ocramius if you want to be more selective about deprecations, you can set By default, I get the same fatal error... which is quite unfortunate: many userland error handlers out there (e.g. phpunit's) turn any errors into exceptions. Yet, throwing from Note also that phpunit uses In Symfony, to remain compatible with error handlers that turn anything into exceptions, all deprecation notices are silently triggered, that is: I think that's a really wise triggering policy. It didn't come as an obvious one and we were skeptical at first. But 18 months since this decision, we know it's really the best choice to keep a strict BC policy, yet allow opt-inner to move forward with us. Back to this thread, the deprecation is also a BC break, since it breaks our test suites. If the outcome weren't a fatal error, I'd be ok to say "hey, php core needs to trigger deprecations before dropping code in next major version". But here and with all of this in mind, I'd prefer not deprecate the method... Let it be, it returns the same thing as |
Ugh, this is a really unfortunate complication. So essentially, this means we effectively can't deprecate |
On the other hand, I feel like converting a deprecation notice to an exception pretty much explicitly opts you out of the BC policy. We reserve the right to introduce deprecations, but if you convert them to exceptions that definitely can't be backwards compatible for you anymore. Of course, this is a somewhat idealistic view given how PHPUnit does this by default (and I can't say that this default behavior is unreasonable). I guess I could live with just deprecating it in the documentation, along the lines of:
|
Yep, agreed. Because php core doesn't trigger that many deprecations, error handler author (phpunit included imho) didn't noticed deprecations need special care. Still php core should trigger these.
👍 |
@dshafik what's your take on this? Seems sensible in this scenario, even if it was never done before... |
It's probably worth asking @sebastianbergmann whether this PHPUnit issue could be fixed, if 7.1 was throwing deprecation notices. |
If you ask me, deprecation is the exact kind of thing a test suite SHOULD discover. It would be nice if PHPUnit issued a warning, rather than causing this fatal error however. @sebastianbergmann thoughts on handling E_DEPRECATED specially? e.g. a section at the end of the output detailing deprecated usage. IIRC converting to exceptions is part of the flow control for handling PHP errors/warning in PHPUnit, so it might not be feasible. |
I was hoping for @sebastianbergmann to chime in here, however I still feel that catching deprecations, even through failure, is part of the job of the test suite. We can add the deprecation at a later date, and just document it as such for now. Can you add a comment in the code to this effect @nikic? I'd like to get this merged today so I can build RC3. |
8c2410d
to
93f94b6
Compare
@dshafik Done |
Are we ready to merge? /cc @nikic |
I've merged the changes. I've left the un-deprecation as a separate commit, so that actually deprecating it just needs a git revert. |
The issues in Prophecy are resolved in RC3 |
This restored the behavior of
ReflectionType::__toString()
from PHP 7.0. No?
will be prepended for nullable types.Additionally, the
ReflectionType::__toString()
method is deprecated in favor ofReflectionNamedType::getName()
.