You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I started to think that maybe the notion of "self-deprecation" wasn't something easy for PHPStan.
In this case ignoring deprecation per namespace could be easier with a config like:
Uh oh!
There was an error while loading. Please reload this page.
When exposing a library, you need to respect semantic versioning and avoid BC-break.
Let's say you have some code
An error is reported because
$this->foo;
is used but changing this/removing it would be a BC break.But the phpstan-deprecation-rules would still be useful to detect when I use a deprecated method from another library.
Is it possible to add an option in order to
?
The text was updated successfully, but these errors were encountered: