我无法找到 Symfony 安全提供者的其他选项
例如
此链接http://symfony.com/doc/current/cookbook/security/custom_provider.html
说
security:
providers:
webservice:
id: webservice_user_provider
现在我知道 id 是实现的类的服务 idUserProviderInterface
但是webservice
这里是什么,我怎么能得到它?
这段代码和上面的代码有什么区别
providers:
administrators:
entity: { class: AcmeUserBundle:User}
我很困惑是否需要在那里使用用户作为实体或在那里UserManager
实现UserProviderInterface