-
-
Notifications
You must be signed in to change notification settings - Fork 206
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
pick should use array_key_exists instead of isset #217
Comments
The behavior difference would be in case you have a default value other than null specified, right? |
Hey lstrojny, so sorry for the delay. |
Makes all sense, should indeed be |
pick source code use
isset
to check if the given key is present in the collection. This implies that NULL values are not valid but they should be. What about to use array_key_exists?The text was updated successfully, but these errors were encountered: