This repository has been archived by the owner on Jan 8, 2020. It is now read-only.
Individual shared setting does not override the shareByDefault setting of the ServiceManager #3439
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR currently contains just a failing test.
Edit: Added possible fix.
Fixing is not as easy as it looks.
Making the tests succeed can be achieved by changing the following 3 lines https://github.com/zendframework/zf2/blob/master/library/Zend/ServiceManager/ServiceManager.php#L461
into
But another problem lies in how the shared setting of the indivual services are set: as the third parameter of
setInvokableClass($name, $invokableClass, $shared = true)
andsetFactory($name, $factory, $shared = true)
which sets the _individual_ shared setting always to yes by default which is a problem when shareByDefault is set to false.Any ideas are welcome.