我遇到了以下问题。我有服务。我想在每个TWIG模板中使用该服务。但它找不到我的服务。
我收到以下错误:
ServiceNotFoundException in CheckExceptionOnInvalidReferenceBehaviorPass.php line 58:
The service "twig" has a dependency on a non-existent service "appbundle\service\categoryhandler".
请注意,该服务不是camelcased,而是在我的config.yml中发布的。
这是我的config.yml部分
# Twig Configuration
twig:
debug: '%kernel.debug%'
strict_variables: '%kernel.debug%'
globals:
categories: '@AppBundle\Service\CategoryHandler'
我已经添加了PHP模板引擎(found this 'solution' while googling my problem)。
templating:
engines: ['twig', 'php']