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
In zendframework/zend-diactoros 1.8.6, they made a breaking change in src/MessageTrait.php
zendframework/zend-diactoros@ee4bcdc#diff-5abca4d9d5693da46d10a54795b1192d
This change means that the following line in ServerBag.php results in an exception being thrown for an empty header.
$headers['PHP_AUTH_PW'] = isset($this->parameters['PHP_AUTH_PW']) ? $this->parameters['PHP_AUTH_PW'] : '';
Propose to change that line to:
if (isset($this->parameters['PHP_AUTH_PW'])) { $headers['PHP_AUTH_PW'] = $this->parameters['PHP_AUTH_PW']; }
The text was updated successfully, but these errors were encountered:
This line seems to be in place in Symfony's HttpFoundation's ServerBag class. So it would have to be fixed there instead.
ServerBag
Sorry, something went wrong.
No branches or pull requests
In zendframework/zend-diactoros 1.8.6, they made a breaking change in src/MessageTrait.php
zendframework/zend-diactoros@ee4bcdc#diff-5abca4d9d5693da46d10a54795b1192d
This change means that the following line in ServerBag.php results in an exception being thrown for an empty header.
Propose to change that line to:
The text was updated successfully, but these errors were encountered: