我的 parameters.yml 文件有:
parameters:
title:
subtitle: value
我想将 传递value
给 config.yml 中的服务
my_service:
class: the_class
arguments: [ %title.subtitle%] //didn't work
arguments: [ %title['subtitle']%] //didn't work
我怎样才能做到这一点?