nelmio/NelmioSolariumBundle

symfony 4.0 services

micheledibenedetto7 opened this issue · 2 comments

i got this error if i try to simply use the default solarium client:

The "solarium.client" service or alias has been removed or inlined when the container was compiled. You should either make it public, or stop using the container directly and use dependency injection instead.

my code in a standard controller action:
$client = $this->get('solarium.client');

what can i do about this? thanks in advance.

Add this to your services.yml:

    my.solarium.client:
        alias: solarium.client
        public: true

Then use $client = $this->get('my.solarium.client'); to access the client in your controller.

Add this to your services.yml:

    my.solarium.client:
        alias: solarium.client
        public: true

Then use $client = $this->get('my.solarium.client'); to access the client in your controller.

thank you very much, works fine!