Is there a way to update an object\'s property in twig?
An object like the following is passed to twig:
object property1 property2
A possible way to set a property is to create a method in the object which actually creates new properties:
class Get extends StdClass { protected function setProperty($name,$value = null) { $this->$name = $value; } }