我正在尝试在symfony2应用上使用粘性区域设置更改。 使用官方文档中的this指南。
但是我收到了一个错误:
Service "app.locale_listener" must implement interface "Symfony\Component\EventDispatcher\EventSubscriberInterface".
事实是这个类已经实现了EventSubscriberInterface
。
public static function getSubscribedEvents()
{
return array(
// must be registered after the default Locale listener
KernelEvents::REQUEST => array(array('onKernelRequest', 15)),
);
}
我正在使用 Symfony 2.8 。
有人遇到过这个错误吗?