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
I have a project taken over from someone who tries it with a custom compiler pass:
public function process(ContainerBuilder $container)
{
$definition = $container->getDefinition('security.authentication.provider.custom');
$definition->setClass(CustomAuthenticationProvider::class);
}
but it doesn't work, meaning the CustomAuthenticationProvider isn't called. How to do this?
The text was updated successfully, but these errors were encountered:
I have a project taken over from someone who tries it with a custom compiler pass:
but it doesn't work, meaning the CustomAuthenticationProvider isn't called. How to do this?
The text was updated successfully, but these errors were encountered: