使用yaml配置symfony3

时间:2015-12-29 12:01:28

标签: symfony service yaml config guard

我使用Guard作为新的身份验证系统。 我注册了这样一个新服务:

app.form_login_authenticator:
    class: AppBundle\Security\FormLoginAuthenticator
    arguments:
        - @security.password_encoder
        - @router

并抛出异常:

../app/config/config.yml" does not contain valid YAML

任何人都可以想象为什么?

谢谢和问候!

1 个答案:

答案 0 :(得分:0)

尝试

app.form_login_authenticator:
    class: AppBundle\Security\FormLoginAuthenticator
    arguments: ["@security.password_encoder","@router"]