gergelypolonkai-web-jekyll/_posts/2012-12-20-symfony-2-config...

23 lines
740 B
Markdown
Raw Permalink Normal View History

2014-06-26 16:48:13 +00:00
---
layout: post
title: "Symfony 2 Configuration Array of associative arrays"
2016-02-26 15:26:26 +00:00
date: 2012-12-20 12:03:23
2014-06-26 16:48:13 +00:00
tags: [php, symfony]
permalink: /blog/2012/12/20/symfony-2-configuration-array-of-associative-arrays
published: true
author:
name: Gergely Polonkai
email: gergely@polonkai.eu
---
Few days ago I have struggled with a problem using Symfony2 configuration. I
wanted to add the following kind of configuration to `config.yml`:
2017-08-31 09:55:54 +00:00
{% gist 30440e25f7a447730064 config.yml %}
2014-06-26 16:48:13 +00:00
The problem was that the stuff under `transitions` is dynamic, so those
`hc_cba` and `cba_hc` tags can be pretty much anything. After hitting many
errors, I came to the solution:
2017-08-31 09:55:54 +00:00
{% gist 30440e25f7a447730064 DynarrayConfiguration.php %}