我遇到symfony参数问题。在config_dev.yml
我有这一行:
swiftmailer:
delivery_address: "%support_email%"
现在我想将参数support_email
添加到parameters.yml
parameters:
support_email: test@test.com
现在,如果我运行composer update
,我会收到此错误:
[Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException]
You have requested a non-existent parameter "support_email".
我该怎么做才能处理这个错误?
答案 0 :(得分:2)
Symfony读取文件parameters.yml.dist,然后构建parameters.yml,并删除未在.dist中定义的参数。
只需在parameters.yml.dist中添加此行:
parameters:
[...]
support_email: you@company.com