Hi, In the class _AddExpressionLanguageProvidersPass_, this code return always false: ``` php $container->hasDefinition("router") ``` Meaning that the tag **routing.expression_language_provider** is never treated. If I replace that code with this code it works: ``` php $container->has("router") ``` In fact _"router"_ is alias not a definition.