Je veux ajouter un paramètre au ParameterBag dans une requête symfony2.
Le tableau se présente donc comme suit :
array (size=2)
'editor' =>
array (size=6)
'_token' => string '5797a4faf1fced89404b80fb04b3cadffc99695e' (length=40)
'login' => string 'editor' (length=6)
'firstName' => string 'Joh' (length=3)
'lastName' => string 'Ha' (length=2)
'address' =>
array (size=6)
'time_zone_code' => string 'Africa/Abidjan' (length=14)
Et je veux ajouter un champ au editor array
. J'ai essayé ceci
$request->request->add(array('editor[password]' => $password));
Mais bien sûr, cela ne fait qu'ajouter un champ nommé editor[password]
après la editor array
.
Dois-je remplacer tout le ParameterBag ou existe-t-il une méthode pour ajouter la valeur ?