2 Twig supports __call() for attributes
7 class TestClassForMagicCallAttributes
9 public function getBar()
11 return 'bar_from_getbar';
14 public function __call($method, $arguments)
16 if ('foo' === $method)
18 return 'foo_from_call';
24 return array('foo' => new TestClassForMagicCallAttributes())