Andreas Braun
Andreas Braun
TBF, I would prefer keeping it as an `integerNode` - a port is a number by definition; changing it to a `scalarNode` seems like an ugly workaround. What would be...
Can someone from @doctrine/team-symfony-integration shed some light on this? I'd expect `%env()%` to be resolved before types are checked 🤔
Just tested the following config with Symfony 4.2, with no luck: ``` $config = [ 'document_managers' => [ 'dm1' => [ 'metadata_cache_driver' => [ 'type' => 'memcached', 'class' => 'fooClass',...
And what good does that do when it doesn't work in 4.2 either? 🤔
I'll give that a shot and create a PR with a test. Thanks for your help so far
@xabbuh I finally managed to give it another shot. If I do the above, the `port` config has the following value in the extension: `env_79eccd8f6110d31f_int_MEMCACHE_PORT_14eebdfdaafea8526666484336b4ef06`. This is then passed to...
Just one attempt to get it to work in a test in #532.
At the moment, the bundle does not support ODM - I'll check if it can easily be changed to do so. The reason I want to extract it is to...
I've created https://github.com/doctrine/mongodb-odm/issues/1986 to track the refactoring of the filter logic to allow better configuration. Once this has been implemented in ODM we can then talk about using auto configuration...
Nothing - the `ServiceDocumentRepository` class is just a nice layer that hides these internals from you so that you only need to call the parent constructor: ```php final class FooRepository...