-
Notifications
You must be signed in to change notification settings - Fork 118
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
False positive null pointer exception #1946
Comments
Similar example in a function foo (?SomeEnum $bar) {
match ($bar) {
null => 'invalid',
SomeEnum::SomeCase => $bar->value,
};
} Accessing
|
i think this can be generalised as a false positive whenever the check for null is done indirectly (so not something along the lines of I think @jtheuerkauf 's |
Current behaviour
Have a DOMNode element and code like this
Get null pointer exception warning
Expected behaviour
No warning, since there is is a null safe operator
?->
used for the same object.Environment details
The text was updated successfully, but these errors were encountered: