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
$container->set('foo', 'bar'); $container->get('foo'); // bar $container->set('foo', 'baz'); $container->get('foo'); // bar (should be baz)
The value is "cached" in the $entries array, and set only add a new definition but doesn't update the $entries array.
$entries
set
Fix should be trivial.
The text was updated successfully, but these errors were encountered:
#126 Container::set without effect if a value has already been set an…
54cfe26
…d retrieved
Fixed in 3.5.1
Sorry, something went wrong.
No branches or pull requests
The value is "cached" in the
$entries
array, andset
only add a new definition but doesn't update the$entries
array.Fix should be trivial.
The text was updated successfully, but these errors were encountered: