You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$g = new \Symfony\Component\Security\Http\RememberMe\TokenBasedRememberMeServices(array(0 => $b), 'fe1qwd3', 'main', array('name' => 'remember_me', 'lifetime' => '8640000', 'path' => '/',
// as you see - it just use string but not calling service'domain' => '@runtime_parameters.security.firewalls.main.remember_me.domain',
'secure' => false, 'httponly' => true, 'always_remember_me' => true, 'remember_me_parameter' => '_remember_me'), $c);
What you can advice for me?
The text was updated successfully, but these errors were encountered:
There's no one-size-fits-all solution to handle this. Config processing is handled by each bundle, so each bundle will have to be considered separately.
Basically, you have two options:
You can fork the bundle, and alter the configuration processing to allow services as an argument. You can then either just use your fork and/or do a PR against the bundle for everyone to be able to use your changes. There is however the risk that the bundle maintainer doesn't want this functionality, in which you'll have to maintain your own fork indefinitely.
You can use a compiler pass to alter the configuration that's been created by the bundle. This may be somewhat easier to maintain (and doesn't involve loads of forks), but it can break with configuration processing updates in the bundle, so you'll need to be watchful when updating bundles...
Hello!
There is part from configuration
It doesnt works as expected:
What you can advice for me?
The text was updated successfully, but these errors were encountered: