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 do have a decorator service over validator.validator_factory, as described in documentation. It is not working for now, because:
\Symfony\Component\DependencyInjection\Compiler\DecoratorServicePass is removing original service, renaming it to my_service_name.inner and set alias from my_service_name to validator.validator_factory.
After that \Symfony\Component\Validator\DependencyInjection\AddConstraintValidatorsPass is invoked, and tries to locate original service validator.validator_factory which can not be found anymore.
As a result, validator factory built with wrong dependencies.