We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
null
Here should be array_key_exists instead of isset.
array_key_exists
isset
--
For example, before test I have $_ENV['MY_VAR'] = null. In second test element $_ENV['MY_VAR'] already not exists.
$_ENV['MY_VAR'] = null
$_ENV['MY_VAR']
The text was updated successfully, but these errors were encountered:
Thank you for your report.
Please provide a minimal, self-contained, reproducing test case that shows the problem you are reporting.
Without such a minimal, self-contained, reproducing test case I will not be able to investigate this issue.
Sorry, something went wrong.
See #33
I will be very grateful if you make a patch release in version 5 with fixed of this error.
Successfully merging a pull request may close this issue.
Here should be
array_key_exists
instead ofisset
.--
For example, before test I have
$_ENV['MY_VAR'] = null
. In second test element$_ENV['MY_VAR']
already not exists.The text was updated successfully, but these errors were encountered: