my parameters.yml file has:
parameters:
title:
subtitle: value
i want to pass the value to a service in config.yml
my_service:
class: the_class
arguments: [ %title.subtitle%] //didn't work
arguments: [ %title['subtitle']%] //didn't work
how can i do this?
title: {value:'someValue', subtitle:'another value'}? By the way, parameter references have to be quoted.arguments: ['%title%']see documentation